MySQL 是否有更新偏移量?
我有一个没有主键或唯一键的表。
我想更新第 n 条记录中按日期排序的一些值。
mysql更新限制没有偏移量(如限制1,2),我该怎么做?
I have a table without primary key or unique key.
I want to update some values in nth records which order by date.
there is no offset for mysql update limit( like limit 1,2), how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很难看,但是......
你能创建一个临时表吗?我建议使用日期字段的排序值创建一个临时表,并使用 LIMIT 子句进行选择。然后,您可以使用临时表中的值更新原始表。
它会是这样的:
This is ugly, but...
Can you create a temporary table? I'd suggest creating a temp table using the sorted values of the date field, selecting with the LIMIT clause. You can then update the original table using the values in the temporary table.
It would be something like this: