gpt4 book ai didi

MySQL 按时间戳和用户提取最新日志条目

转载 作者:行者123 更新时间:2023-11-29 12:44:01 25 4
gpt4 key购买 nike

我有一个这样的表:

id(主键,自动递增)||用户 ID ||时间戳||数据1 ||数据2 ||数据3(...)

我需要为每个 user_id (“最新行”)提取单个数据,即相对于表中的最新时间戳。

这里给出的答案工作正常,但我担心这个查询的性能: MySQL - using GROUP BY and DESC

我还在这里测试了一些答案,但收到“参数太少”错误和空查询: https://stackoverflow.com/a/7306288/2715309

Select only newest grouped entries

鉴于我有唯一的 auto_inc 列作为主键,我做错了什么以及最佳方法是什么?

谢谢

最佳答案

您在第一个答案中选择的答案使用了一个 MySQL 扩展,该扩展被明确记录为并不总是有效(我已经对该答案进行了评论)。以下是文档页面的链接:http://dev.mysql.com/doc/refman/5.7/en/group-by-extensions.html .

如果您使用相关子查询或联接,则第二个版本可以工作:

select *
from table t
where t.timestamp = (select max(t2.timestamp)
from table t2
where t2.user_id = t.user_id
);

如果您在表(user_id,时间戳)上有索引,这应该具有合理的性能。

与此类似的版本使用带有聚合的join:

select t.*
from table t join
(select t2.user_id, max(t2.timestamp) as maxts
from table t2
group by t2.user_id
) tmax
on t2.user_id = t.user_id and t2.maxts = t.timestamp;

编辑:

尝试使用相同索引的变体:

select *
from table t
where not exists (select 1
from table t2
where t2.user_id = t.user_id and t2.timestamp > t.timestamp
);

这是我通常推荐的形式。

关于MySQL 按时间戳和用户提取最新日志条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25706642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com