Create Table with Existing Table with No Data
Create Table with Existing Table with No Data
March 28, 2025
From Haki.
To create a table similar to an existing table in PostgreSQL, you can use the following commands:
CREATE TABLE transaction_training AS TABLE transaction WITH NO DATA;
CREATE TABLE transaction_test AS TABLE transaction WITH NO DATA;
This is a really handy syntax! We simply tell PostgreSQL to create a table similar to another table, but with no data.