PostgreSQL - Indexing Strategies
Given a table
products(id, name, price) with an index on (id, price), what will be the output of this query if an index-only scan is used?SELECT id, price FROM products WHERE price > 100;