![]() |
#2
zym3088210862008-11-16 20:14
|
create table tt
(
id int primary key identity(1,1),
pdate datetime,
);
我创建一个表tt如上,id列为递增列.
现在我想插入,为什么不能呢?
insert into ttvalues (null, getDate());
怎么提示:仅当使用了列的列表,并且 IDENTITY_INSERT 为 ON 时,才能在表 'tt' 中为标识列指定显式值。