(
a ASC
)
) ON [PRIMARY]
GO
Insert into Table1 values('赵','asds','90')
Insert into Table1 values('钱','asds','100')
Insert into Table1 values('孙','asds','80')
Insert into Table1 values('李','asds',null)
GO
select a,c INTO Table2 from Table1
GO
select * from Table2
GO
drop TABLE Table1
drop TABLE Table2