MSSQL 数据库复制脚本

--新表存在复制数据
insert into 新表 (字段) 
select 字段 from 旧表

-- 新表不存在复制数据
select * into 新表 from 旧表
相关文章
相关标签/搜索