使用select insert语句更改表

时间:2014-02-20 17:18:32

标签: mysql sql database

我在MySQL数据库中有一个表,它从另一个表中获取数据。

  create table test as select id,name,value from test2

现在我想将同一个test2表中的另一个列数据(例如country)插入到test中。 我可以改变或更新测试表。任何建议都会对我有所帮助。我试过这样:

alter table test add (select country from test2)

感谢

0 个答案:

没有答案