Friday, February 10, 2012

Insert data from a tabel to another table with sql

INSERT INTO data_table_1
(`data_1`,`data_2`,`data_3`,`country`)
SELECT `data_1`,`data_2`,`data_3`, "us"
FROM data_table_2;

No comments:

Post a Comment