如何更新带有“空白”的列价值

发布于 2024-11-07 00:53:46 字数 57 浏览 0 评论 0原文

如何使用“空白”值更新列值(varchar(20), not null)?

How do I update a column value (varchar(20), not null) with a "blank" value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蝶…霜飞 2024-11-14 00:53:46

如果您想使用 NULL 更新它,则需要将其更改为允许 NULL。否则使用空字符串 "" 进行更新。

If you want to update it with NULL you will need to change it to allow NULL. Otherwise update with an empty string "".

蓝眼睛不忧郁 2024-11-14 00:53:46
Update TableName Set ColumnName='' where [Condtion] // To update column with an enpty values
Update TableName Set ColumnName='' where [Condtion] // To update column with an enpty values
清风疏影 2024-11-14 00:53:46

如果有任何 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文