原文:http://www.111cn.net/database/mysql/60705.htm
把一個表中的數據轉存帶另一張表里
方法一:在mysql中用select into from一直報錯,
錯誤:#1327 - Undeclared variable: target_test
select into from要求目標表target_table不存在,因為在插入時會自動創建
后來在網上看資料說Mysql不支持select into from語句,所以用其他方法來替代select into from語句:
Create table target_table(Select * from Table1);
方法二:INSERT INTO table_1 (SELECT * FROM table_2)
把table_2數據轉存到table_1,此方法適合table_1已經創建的。
