mysql insert from another table code example
Example 1: insert select
INSERT INTO table2
SELECT * FROM table1
WHERE condition;
Example 2: insert into table from another table mysql
INSERT INTO table1 (emp_id, fname)
SELECT emp_id, fname
FROM table2
WHERE status = 'Active';