PostgreSQL - Advanced Features
Given the table
products(name TEXT) and the pg_trgm extension enabled, what does the query below return?SELECT name FROM products WHERE name % 'apple';
