PostgreSQL - Indexing Strategies
Given a table
orders with an integer array column product_ids and a GIN index on it, what does this query return?SELECT * FROM orders WHERE product_ids @> ARRAY[101, 202];
