此SQL语句用于PHP:
Insert into Table from AS Select * from Tabl1 where id='5'
为什么它没有从Table1插入表到表的任何线索?用户执行此语句以创建副本。
答案 0 :(得分:2)
删除from as
:
Insert into Table (Select * from Tabl1 where id='5')
(BTW为什么'5'
而不只是5
?id
实际上是字符串值吗?)
答案 1 :(得分:2)
删除“FROM AS”,它应该可以工作。见http://dev.mysql.com/doc/refman/5.0/en/ansi-diff-select-into-table.html