Answers for "how to insert table in another table in sql"

SQL
2

insert into table from another table mysql

INSERT INTO table1 (emp_id, fname)
SELECT emp_id, fname 
FROM table2
WHERE status = 'Active';
Posted by: Guest on May-31-2020
5

insert select

INSERT INTO table2
SELECT * FROM table1
WHERE condition;
Posted by: Guest on June-30-2020

Code answers related to "how to insert table in another table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language