目标表存在:
insert into 目标表 select * from 原表

目标表不存在:
select * into 目标表 from 原表

复制表结构
select * into 目标表 from 原表 Where 1=2

  

 

相关文章: