Copy Tables to Backup Tables in Postgresql
Copy tables to an _old as backup
1CREATE TABLE new_table AS
2TABLE existing_table;
See details in https://www.postgresqltutorial.com/postgresql-copy-table/
_old as backup1CREATE TABLE new_table AS
2TABLE existing_table;
See details in https://www.postgresqltutorial.com/postgresql-copy-table/