How do I copy data from one table to another in postgres using copy command

Mohitd23

We use copy command to copy data of one table to a file outside database.

Is it possible to copy data of one table to another table using command.

If yes can anyone please share the query.

Or is there any better approach like we can use pg_dump or something like that.

Craig Ringer

You cannot easily do that, but there's also no need to do so.

CREATE TABLE mycopy AS
SELECT * FROM mytable;

or

CREATE TABLE mycopy (LIKE mytable INCLUDING ALL);

INSERT INTO mycopy
SELECT * FROM mytable;

If you need to select only some columns or reorder them, you can do this:

INSERT INTO mycopy(colA, colB)
SELECT col1, col2 FROM mytable;

You can also do a selective pg_dump and restore of just the target table.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do i copy data from one table to another table?

From Dev

How do i copy data from one table to another table?

From Dev

How do I copy data from each record of one table into multiple records of another table related to the first table?

From Dev

Copy Data from one table to another table

From Dev

How do I copy a date from one variable to another in R data.table without losing the date format?

From Dev

How copy data from one table into another? PHP

From Dev

How to copy data from one table into another in Microsoft SQL Server

From Dev

How copy data from one table into another? PHP

From Dev

Copy table data from one database to another

From Dev

Copy Data from one hbase table to another

From Dev

Copy Data from one hbase table to another

From Dev

Copy table data from one database to another

From Dev

How to copy from one table to another using laravel?

From Dev

How do I copy data from one column in table A to table B in Oracle

From Dev

How do I copy one image to another using Excel VBA

From Dev

How do I copy the latest file from one directory to another?

From Dev

How do I copy the latest file from one directory to another?

From Dev

How do i copy files from one directory to another directory?

From Dev

How do I copy top X files from a directory to another using terminal command?

From Dev

How do I copy top X files from a directory to another using terminal command?

From Dev

How do I copy data from one excel sheet to another excel sheet?

From Dev

How to copy rows from one table to another?

From Java

How do I copy entries from one collection to another using mongoose?

From Dev

How do I copy data from Command Prompt in Windows 7?

From Dev

copy data from one table to another table in another database

From Dev

Using LINQ to copy data from one table to another one on another server?

From Dev

MYSQL, copy data from one table to another table with increment in varchar

From Dev

Can i copy data from one database table to another already existing database table sql server?

From Dev

Copy rows of data from one table to another table in same database using pgadmin

Related Related

  1. 1

    How do i copy data from one table to another table?

  2. 2

    How do i copy data from one table to another table?

  3. 3

    How do I copy data from each record of one table into multiple records of another table related to the first table?

  4. 4

    Copy Data from one table to another table

  5. 5

    How do I copy a date from one variable to another in R data.table without losing the date format?

  6. 6

    How copy data from one table into another? PHP

  7. 7

    How to copy data from one table into another in Microsoft SQL Server

  8. 8

    How copy data from one table into another? PHP

  9. 9

    Copy table data from one database to another

  10. 10

    Copy Data from one hbase table to another

  11. 11

    Copy Data from one hbase table to another

  12. 12

    Copy table data from one database to another

  13. 13

    How to copy from one table to another using laravel?

  14. 14

    How do I copy data from one column in table A to table B in Oracle

  15. 15

    How do I copy one image to another using Excel VBA

  16. 16

    How do I copy the latest file from one directory to another?

  17. 17

    How do I copy the latest file from one directory to another?

  18. 18

    How do i copy files from one directory to another directory?

  19. 19

    How do I copy top X files from a directory to another using terminal command?

  20. 20

    How do I copy top X files from a directory to another using terminal command?

  21. 21

    How do I copy data from one excel sheet to another excel sheet?

  22. 22

    How to copy rows from one table to another?

  23. 23

    How do I copy entries from one collection to another using mongoose?

  24. 24

    How do I copy data from Command Prompt in Windows 7?

  25. 25

    copy data from one table to another table in another database

  26. 26

    Using LINQ to copy data from one table to another one on another server?

  27. 27

    MYSQL, copy data from one table to another table with increment in varchar

  28. 28

    Can i copy data from one database table to another already existing database table sql server?

  29. 29

    Copy rows of data from one table to another table in same database using pgadmin

HotTag

Archive