SQL - Indexes and Query Performance
Given a table
orders with 1 million rows and an index on customer_id, what is the expected result of this query?SELECT * FROM orders WHERE customer_id = 123;
