PostgreSQL - Indexing Strategies
Given a table
employees(id SERIAL PRIMARY KEY, salary INT) with a B-tree index on salary, what will be the result of this query?SELECT * FROM employees WHERE salary > 50000 ORDER BY salary ASC LIMIT 3;
