job 表内有一列是自增列,不能插入显式值。如:
create table t(id int identity,field1 int)如果:
insert t(id,field1) values(1,1) 要出错但可以insert t(field1) values(1)