使用 Sql Server CE 4 我创建了下表。
create table abc(id int identity(1,1) primary key)
如果我尝试使用以下内容插入一行以生成新身份:
insert into abc default values
我收到一条错误消息,指出默认单词附近存在问题。
我如何使用 Sql Server CE 4 来做到这一点,还是不可能?
使用 Sql Server CE 4 我创建了下表。
create table abc(id int identity(1,1) primary key)
如果我尝试使用以下内容插入一行以生成新身份:
insert into abc default values
我收到一条错误消息,指出默认单词附近存在问题。
我如何使用 Sql Server CE 4 来做到这一点,还是不可能?