在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 创建一个新表