PostgreSQL - Indexing Strategies
Consider the table
What will the query
orders(id INT, total NUMERIC) and the index:CREATE INDEX idx_total_rounded ON orders ((ROUND(total)));What will the query
SELECT * FROM orders WHERE ROUND(total) = 100; do?