MySQL 是否有更新偏移量?

发布于 2024-10-27 07:44:11 字数 92 浏览 2 评论 0原文

我有一个没有主键或唯一键的表。

我想更新第 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 技术交流群。

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

发布评论

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

评论(2

清醇 2024-11-03 07:44:11
UPDATE table_name
...
WHERE ids in ( SELECT ids FROM table_name limit ....)
UPDATE table_name
...
WHERE ids in ( SELECT ids FROM table_name limit ....)
岁月静好 2024-11-03 07:44:11

这很难看,但是......

你能创建一个临时表吗?我建议使用日期字段的排序值创建一个临时表,并使用 LIMIT 子句进行选择。然后,您可以使用临时表中的值更新原始表。

它会是这样的:

create temporary table temp 
  select date_field from mytable order by date_field limit 4,2;

update mytable set another_field='FOUND' 
 where date_field in (select date_field from temp);

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:

create temporary table temp 
  select date_field from mytable order by date_field limit 4,2;

update mytable set another_field='FOUND' 
 where date_field in (select date_field from temp);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文