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.
我用谷歌搜索了很多都没有成功,只需要知道更改列默认值的查询。
1)删除旧的默认值:
ALTER TABLE <TableName> DROP CONSTRAINT <DF_ContstraintName>
2) 添加新的默认值:
ALTER TABLE <TableName> ADD CONSTRAINT <DF_ContstraintName> DEFAULT <Value> FOR <ColumnName>