PostgreSQL - Indexing Strategies
Given a table
orders with 1 million rows and an index on customer_id, what is the likely result of this query?SELECT * FROM orders WHERE customer_id = 12345;
