gpt4 book ai didi

mysql - 不使用子查询过滤值

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

如果用户多次填写调查,我将尝试仅获取最新调查日期的值。

但是,由于响应表很大,我宁愿不在 where 子句的子查询中执行此操作

select *
from responses r1
where r1.survey_date = (select MAX(survey_date) from responses r2 where
r1.user_id = r2.user_id);

这是一个加载数据的示例 https://www.db-fiddle.com/f/chUhe2HjoAa9QRNmp5pfSv/3

最佳答案

这个查询应该没问题:

select *
from responses r1
where r1.survey_date = (select MAX(survey_date) from responses r2 where
r1.user_id = r2.user_id);

您只需要一个关于responses(user_id,survey_date)的索引。

关于mysql - 不使用子查询过滤值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51326024/

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