当前位置: 首页 > 工具软件 > table2sql > 使用案例 >

sql server 不能使用 create table ... as

谷泽宇
2023-12-01

在sql server中没有create table ... as这种语法,要将一个表复制到另一个表要用:select * into newtable from oldtable

select column into newtable from oldtable group by column order by column    --旧表中合并重复度column列并按顺序复制到新表中

执行这条sql语句后,会自动创建一个newtable表,在写上面的sql语句之前,不需要使用create table 创建一个新表

 类似资料: