Disclaimer

The views expressed on this blog are my own and do not necessarily reflect the views of Oracle.

Friday, March 27, 2009

How to copy data from table to another in Postgres

Here is the syntax for the same
Insert into table2 [column1, ...] Select * from table1;

No comments: