如何在 MySQL 中执行此操作:if 字段值 > 0 然后减一,否则就这样
UPDATE tbl SET counts=counts-1 ...
UPDATE tbl SET counts=counts-1 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
UPDATE tbl SET counts=counts-1 ...
UPDATE tbl SET counts=counts-1 ...
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果
count
是您要更新的唯一列(或者,您没有在 where 子句中指定其他条件),那么您可以在 where 子句中执行此操作。但是,如果您是更新同一查询中的其他列,这是行不通的。但你有选择
或者
If
count
is the only column you're updating (or, you don't have other criteria specified in your where clause), then you can just do that in the where clauseHowever, if you're updating other columns in the same query, this won't work. But you have options
or
感谢@Peter Bailey,
这是带有 WHERE 选择器的示例。
祝你好运 。
thanks to @Peter Bailey
this is the example with the WHERE selector .
Good luck .