最佳答案
在 SqlServer 中,是否有办法将列的默认值设置为 DateTime.Now
?
例如:
table Event
Id int (auto-increment) not null
Description nvarchar(50) not null
Date datetime not null
台词是:
Insert into Event(Description) values('teste');
应该插入一行,Date 值应该是当前日期。