SQL 关键字不是

发布于 2024-10-03 21:00:37 字数 163 浏览 3 评论 0原文

我必须进行更新,这将更改表中的布尔字段。如果该值为 true,则该值应设置为 false 且相反。

我不确定 not 关键字在 SQL 中如何工作,并且以下内容似乎不起作用:

Update tbl set field=!field where ID=1

I have to make a update which shall change a boolean field in a table. If the value is true the value should be set to false and opposite.

Im not sure how the not keyword works in SQL and the following doesnt seem to work:

Update tbl set field=!field where ID=1

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

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

发布评论

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

评论(2

思念满溢 2024-10-10 21:00:37

! 运算符在 SQL 中称为 NOT。试试这个:

UPDATE tbl
SET field = NOT field
WHERE ID = 1

我已经验证这适用于 PostgreSQL,并且它应该适用于任何值得使用的数据库引擎。

The ! operator is called NOT in SQL. Try this:

UPDATE tbl
SET field = NOT field
WHERE ID = 1

I have verified that this works on PostgreSQL, and it should work on any DB engine worth its salt.

听你说爱我 2024-10-10 21:00:37
Update tbl set ID=1 where field<>field 

<> 是sql中的不等于运算符

Update tbl set ID=1 where field<>field 

<> is not equal operator in sql

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