sqlserver 两张表数据导入

对于sql server 来说

如果是新的表,那么这样做

select * into newtable from ta;

如果是已有的表
insert into newtable select * from ta;

如果是oracle
如果是新的表,那么这样做

create table newtable select * from ta;

如果是已有的表
insert into newtable select * from ta;

posted @ 2018-08-01 16:37  存在丶  阅读(233)  评论(0编辑  收藏  举报