PostgreSQL - Table Partitioning
Given a partitioned table
Then querying
logs with partitions logs_2023 and logs_2024, what will be the result of this command?ALTER TABLE logs DETACH PARTITION logs_2023;Then querying
SELECT count(*) FROM logs;