前表中的数据全部插入到新
表中,但是做这个操作之前需要保证数据库选项 select into/bulkcopy 设置为true。方法如下:
use master /*设置命令必须在master数据库中进行*/
sp_dboption 数据库a名,"select into/bulkcopy",true /*设置数据库选项*/
use 数据库a名
checkpoint /*使设置结果生效*/
如果要将统计结果或者计算结果插入到新表中,必须以标题的形式给出列名,如:
select a,b=avg(c) into mm from nn group by a
32, 随即取出N条记录的方法:select top N * from 表名 order by newid()
33,创建唯一约束:create table a(b int not nul constraint 约束名
unique,c char(10) null)
或者:create table a(b int,c char(10),constraint 约束名 unique(b))
34,在sql server表格选定一个单元格,ctrl+0即可将单元格的值置为null