Copy rows from table to another

yaylitzis

I want to copy the rows of a table OLD into another table NEW.

INSERT INTO NEW
SELECT date, kind, id, product, version, quantity FROM OLD;

The table OLD has a column kind which is VARCHAR and contains words like insert, extract, delete. In the NEW table this column is an INTEGER. Is there a way to say that if you find delete insert 1, if you find extract insert 2 etc.. ?

Tim Biegeleisen

You can use a CASE statement to replace the string labels with integers:

INSERT INTO NEW
SELECT date,
       CASE WHEN kind = 'delete'  THEN 1
            WHEN kind = 'extract' THEN 2
            ELSE ...
       END,
       product,
       version,
       quantity
FROM OLD;

This assumes that the columns line up correctly, and all the other column types match.

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 to copy rows from one table to another?

From Dev

Mysql Trigger, Copy All Rows From One Table Into Another Table

From Dev

Insert new rows into table but copy data from another row in the table

From Dev

Copy only specific rows from one table to another in PHP and MySQL

From Dev

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

From Dev

How can I copy rows from one to another table with a different number of columns

From Dev

How can i use SQL Select Insert to copy rows from one table to another

From Dev

how to copy data from multiple rows of one table to another in sql server?

From Dev

Copy rows from the same table and update with different ID column and another column

From Dev

Copy Data from one table to another table

From Dev

Subtract rows of one table from another table

From Dev

Postgres Copy select rows from CSV table

From Dev

Postgres Copy select rows from CSV table

From Dev

Copy rows from access table to Excel

From Dev

How to copy and paste rows from workbook to another with non consecutive rows

From Dev

copy data from one table to another table in another database

From Dev

Copy table data from one database to another

From Dev

Copy Data from one hbase table to another

From Java

SQL to copy values from one table to another

From Dev

Copy table from one database to another database

From Dev

Copy a few columns from a table to another

From Dev

Copy a row from one table to another

From Dev

Copy Data from one hbase table to another

From Dev

How to copy values from table for another column

From Dev

Android copy values from table and insert in another

From Dev

Copy data from a table in Excel and paste it into another

From Dev

Copy table data from one database to another

From Dev

Jquery - copy a row from one table to another

From Dev

How to copy the column id from another table?

Related Related

  1. 1

    How to copy rows from one table to another?

  2. 2

    Mysql Trigger, Copy All Rows From One Table Into Another Table

  3. 3

    Insert new rows into table but copy data from another row in the table

  4. 4

    Copy only specific rows from one table to another in PHP and MySQL

  5. 5

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

  6. 6

    How can I copy rows from one to another table with a different number of columns

  7. 7

    How can i use SQL Select Insert to copy rows from one table to another

  8. 8

    how to copy data from multiple rows of one table to another in sql server?

  9. 9

    Copy rows from the same table and update with different ID column and another column

  10. 10

    Copy Data from one table to another table

  11. 11

    Subtract rows of one table from another table

  12. 12

    Postgres Copy select rows from CSV table

  13. 13

    Postgres Copy select rows from CSV table

  14. 14

    Copy rows from access table to Excel

  15. 15

    How to copy and paste rows from workbook to another with non consecutive rows

  16. 16

    copy data from one table to another table in another database

  17. 17

    Copy table data from one database to another

  18. 18

    Copy Data from one hbase table to another

  19. 19

    SQL to copy values from one table to another

  20. 20

    Copy table from one database to another database

  21. 21

    Copy a few columns from a table to another

  22. 22

    Copy a row from one table to another

  23. 23

    Copy Data from one hbase table to another

  24. 24

    How to copy values from table for another column

  25. 25

    Android copy values from table and insert in another

  26. 26

    Copy data from a table in Excel and paste it into another

  27. 27

    Copy table data from one database to another

  28. 28

    Jquery - copy a row from one table to another

  29. 29

    How to copy the column id from another table?

HotTag

Archive