SQL - Indexes and Query Performance
Given a composite index on (country, city) in a table
locations, what will be the result of this query?SELECT * FROM locations WHERE city = 'Paris';
