Friday 1 April 2022

INSERT INTO SELECT Syntax

 

INSERT INTO SELECT Syntax

 

INSERT INTO table2
SELECT * FROM table1
WHERE condition;

Copy only some columns from one table into another table:

INSERT INTO table2 (column1, column2, column3, ...)
SELECT column1, column2, column3, ...
FROM table1
WHERE condition;

 

No comments:

Post a Comment

Note: only a member of this blog may post a comment.