Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可以为空的日期的表。这具有 getdate() 的默认约束。如果未提供日期,则插入今天的日期。但是,我也想将 null 转换为今天的日期。
当插入时提供空值时,有没有办法将日期强制为今天的日期。
我不想将其更改为不可为空的字段。
试试这个代码:
Update table set Date =Getdate() where date=null