Update 语句中 int 的 NULL 值

发布于 2024-11-08 12:08:30 字数 66 浏览 0 评论 0原文

是否可以在 update 语句中为 int 列设置 NULL 值?

在这种情况下我该如何编写更新语句?

Is it possible to set NULL value for int column in update statement?

How can I write the update statement in this case?

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

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

发布评论

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

评论(4

べ映画 2024-11-15 12:08:31

假设列设置为支持 NULL 作为值:

UPDATE YOUR_TABLE
   SET column = NULL

请注意数据库 NULL 处理 - 默认情况下,在 SQL Server 中,NULL 是 INT。因此,如果列是不同的数据类型,则需要将 NULL 转换/转换为正确的数据类型:

UPDATE YOUR_TABLE
   SET column = CAST(NULL AS DATETIME)

...假设上例中的 column 是 DATETIME 数据类型。

Assuming the column is set to support NULL as a value:

UPDATE YOUR_TABLE
   SET column = NULL

Be aware of the database NULL handling - by default in SQL Server, NULL is an INT. So if the column is a different data type you need to CAST/CONVERT NULL to the proper data type:

UPDATE YOUR_TABLE
   SET column = CAST(NULL AS DATETIME)

...assuming column is a DATETIME data type in the example above.

深白境迁sunset 2024-11-15 12:08:31

通过使用不带任何引号的NULL

UPDATE `tablename` SET `fieldName` = NULL;

By using NULL without any quotes.

UPDATE `tablename` SET `fieldName` = NULL;
少女的英雄梦 2024-11-15 12:08:31

如果你的 int 列可以为空,你可以这样写:

UPDATE dbo.TableName
SET TableName.IntColumn = NULL
WHERE <condition>

Provided that your int column is nullable, you may write:

UPDATE dbo.TableName
SET TableName.IntColumn = NULL
WHERE <condition>
游魂 2024-11-15 12:08:31

如果这是可为 null 的 int 字段,则可以。

update TableName
set FiledName = null
where Id = SomeId

If this is nullable int field then yes.

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