Copy Tables in PostgreSQL : We have many option for create duplicate tables in database for backup etc.
Example 1 : CREATE TABLE Table_Name as Existing_Table;
Example 2:
Create table copy_tables as select * from original_table;
technical skills grow
No comments:
Post a Comment