MySQL SET 值与子查询
我试图为表中的最后一行设置一个特定值,但我不确定如何使用子查询来执行此操作。我正在获取表中最后一行的 sid,
SELECT sid ORDER BY timestamp DESC LIMIT 1
并且我想将“bar”分配给该 sid 的 foo 列。
这是我到目前为止所拥有的,但它不起作用(#1235 - 此版本的 MySQL 尚不支持“LIMIT & IN/ALL/ANY/SOME 子查询”)。
UPDATE table SET foo="bar" WHERE sid IN (SELECT sid ORDER BY timestamp DESC LIMIT 1)
有什么想法吗?
谢谢!
I am trying to set a particular value to the last row in a table, but I'm not sure how to do this with subqueries. I am getting the sid of the last row in the table by
SELECT sid ORDER BY timestamp DESC LIMIT 1
and I want to assign "bar" to the foo column of that sid.
This is what I have so far, but it does not work (#1235 - This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery').
UPDATE table SET foo="bar" WHERE sid IN (SELECT sid ORDER BY timestamp DESC LIMIT 1)
Any ideas?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您根本不需要子查询。 :)
You don't need a subquery at all. :)