如果我创建一个以标识列作为主键的表,并且所有其他列都有默认值,例如
create table rr (id int identity(1,1) primary key, dt datetime default getdate())
如果我创建一个以标识列作为主键的表,并且所有其他列都有默认值,例如
create table rr (id int identity(1,1) primary key, dt datetime default getdate())
插入单行
可以通过(ab)使用插入多行默认值
MERGE