SQL - Indexes and Query Performance
Consider a table
logs with 10 million rows and an index on event_date. What will happen if you run this query?SELECT * FROM logs WHERE event_date > '2024-01-01';
