PostgreSQL - Performance Tuning
What will be the output of this EXPLAIN query?
Assuming 'order_date' is not indexed and the table has 500,000 rows.
EXPLAIN SELECT * FROM orders WHERE order_date > '2023-01-01';
Assuming 'order_date' is not indexed and the table has 500,000 rows.
