i saw this
In MySQL, joins work for INSERT, UPDATE, and DELETE statements. It\'s possible to change data in more than one table when joining ta
You can INSERT ... SELECT with mysql, which is probably what they mean. For example:
INSERT INTO tableNew (col1, col2) SELECT tbl1.col1, tbl2.col2 FROM tbl1 JOIN tbl2