用如下语句:
create table 新表名 as select * from 旧表名;
如数据库test表中有如下数据:
执行语句:
create table test1 as select * from test;--其中test1为要新建的表
执行后,test1表中数据如图,内容与test表中一致,也就说明复制成功。
create table mytable1 as select * from mytable
INSERT INTO NEWTABLE SELECT * from OLDTable
实现将OLDTable中的所有列检索出来,复制到新表中,sqlite数据库应该支持。