PostgreSQL - Table Partitioning
Given a table
orders partitioned by range on order_date, what will the query below return?SELECT count(*) FROM orders WHERE order_date < '2023-01-01';
