如何更新带有“空白”的列价值
如何使用“空白”值更新列值(varchar(20), not null
)?
How do I update a column value (varchar(20), not null
) with a "blank" value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用“空白”值更新列值(varchar(20), not null
)?
How do I update a column value (varchar(20), not null
) with a "blank" value?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您想使用
NULL
更新它,则需要将其更改为允许NULL
。否则使用空字符串""
进行更新。If you want to update it with
NULL
you will need to change it to allowNULL
. Otherwise update with an empty string""
.如果有任何 int 列您可能想要执行 null
Update TABLE_NAME set name = '',id =cast(NULLIF(id,'') as NVARCHAR)
If there have any int column which you may want to do null
Update TABLE_NAME set name = '',id = cast(NULLIF(id,'') as NVARCHAR)