SQL - Indexes and Query Performance
Consider a table
inventory with 1 million rows and an index on item_category. What is the expected behavior of this query?SELECT * FROM inventory WHERE item_category = 'electronics';
