在字段 UPDATE 上,如果值已设置,请将其设置为其他值吗?

发布于 2024-07-24 08:38:23 字数 250 浏览 3 评论 0原文

我知道我可以用几行 PHP 轻松地做到这一点,但我希望 MYSQL 中有一种方法可以做到这一点; 我想是有的,但我没有运气找到它。

基本上我想这样做:

UPDATE fieldName SET status='1'
if status='1', SET status='2'

所以第二行显然不是真正的代码,但这就是我想要做的。 将字段更新为值,如果该字段已经等于该值,则将其更新为不同的值。

I know I can easily do this with a few lines of PHP but I was hoping there was a method in MYSQL to do this; I would think there is but I am not having any luck finding it.

Basically I want to do this:

UPDATE fieldName SET status='1'
if status='1', SET status='2'

So that second line is obviously not real code, but that is what I want to do. UPDATE a field to a value, and if that field already equals that value update it to a different value.

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

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

发布评论

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

评论(2

最近可好 2024-07-31 08:38:24

这行得通吗?

UPDATE table SET status = IF(status = 1, 2, 1) WHERE ...;

基本上,如果 status 等于 1,则将其设置为 2,否则将其保留为 1。但是如果这就是您想要做的,那么您也可以这样做:

UPDATE table SET status = 2 WHERE status = 1;

Would this work?

UPDATE table SET status = IF(status = 1, 2, 1) WHERE ...;

Basically, that's if status is equal to 1, then set it to 2 otherwise, leave it was 1. But then you might as well do, if that's all you want to do:

UPDATE table SET status = 2 WHERE status = 1;
记忆之渊 2024-07-31 08:38:24

如果您想要一个像切换按钮一样的字段,请尝试以下操作:

UPDATE table SET status = ABS(status - 1) WHERE...

这样每次更新状态时都会在 0 和 1 之间切换

If you want to have a field that acts like a toggle button try this:

UPDATE table SET status = ABS(status - 1) WHERE...

This way every time you update the status toggles between 0 and 1

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