mysql copy table1 to table2

Solutions on MaxInterview for mysql copy table1 to table2 by the best coders in the world

showing results for - "mysql copy table1 to table2"
Till
12 Apr 2017
1INSERT INTO TARGET_TABLE (`col1_`,`col2_`) SELECT `col1`,`col2` FROM SOURCE_TABLE WHERE `foo`=1
2