PostgreSQL - Indexing Strategies
If a table
sales has an index on sale_date, what is the expected result of this query?SELECT COUNT(*) FROM sales WHERE sale_date BETWEEN '2023-01-01' AND '2023-01-31';
