PostgreSQL - Table Partitioning
You wrote this code:
What is the error in this statement?
CREATE TABLE logs (id INT, region TEXT, day DATE) PARTITION BY RANGE (region) SUBPARTITION BY LIST (day);
What is the error in this statement?
