今天有人问到MSSQL表里的IDENTITY字段,如何让它在复制原来数据到该表时,原来数据的IDENTITY字段不变,而新插入数据时,新插入的数据的IDENTITY依然增长,查了些资料,做了个实验,最终解决,实验过程脚本如下: use test1 go drop table t1 drop table t2 go create table t1(col1 int identity(100,1),col2 char(100)) create table t2(col1 int identity(1…