如何将一个表中的某一行数据写入另一个表中
在我创立的同一个数据库中,有2张表,其中一张表里含有数据,另一个表是没有数据的,现在我想把有第一个表中的一行数据存入另个表中。请问具体代码如何去写,我是新手,真心求教,希望大家能说详细点。谢谢。
------解决方案--------------------insert into tb1(id) select id from tb2 where id='xxxx'
------解决方案--------------------http://www.cnblogs.com/freshman0216/archive/2008/08/15/1268316.html
------解决方案--------------------insert into ...select...
------解决方案--------------------insert into table1(field1,field2,..) select field1,field2,.. from table2 where 条件