gpt4 book ai didi

mysql - 查询连接 2 个表并仅保留其中一个表中的 1 行

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

我有 2 个表(item 和 item_historic),我正在寻找一个保留最后一个 item_historic 行(最大日期)并将其连接到 item 表的查询。

项目:

id_item     state_item
5560 complete
5570 removed

item_historic:

id_historic id_item     state_historic  date
2002 5560 declared 2011-01-13 13:32:15
2198 5560 complete 2011-03-14 11:44:40
1780 5570 declared 2011-03-15 15:26:55
2208 5570 removed 2011-04-15 08:17:59

结果:

id_item id_historic state_item      date                state_historic
5560 2198 complete 2011-03-14 11:44:40 complete
5570 2208 removed 2011-04-15 08:17:59 removed

我只想要一个 id_item。

我希望这是有道理的,并提前致谢。

编辑:结果错误,我的问题是查询应该是什么样子?
尝试过:

select ah.id_item, ah.id_historic, at.state, date, ah.id_type, ah.state_item  from item at left join item_historic ah on ah.id_item = at.id_item group by ah.id_item order by max(date) ;

最佳答案

在 MySQL 中,不存在方法通常是最有效的:

select ah.id_attestation, ah.id_historic, at.state, date, ah.id_type, ah.state_aft 
from `via-energica_plateforme`.attestation at left join
`via-energica_plateforme`.attestation_historic ah
on ah.id_attestation = at.id_attestation
where not exists (select 1
from `via-energica_plateforme`.attestation_historic ah2
where ah2.id_item = ah.id_item and
ah2.date > ah.date
);

此查询最适合使用 attestation_historic(id_item, date) 上的索引。

在这种情况下,not contains 子句需要一些时间来适应。它说的是“从表中没有最新行的地方选择行”——这与“获取最大日期”相同。 MySQL 的优点是不需要聚合,而聚合可能是一项昂贵的操作。但是,为了性能,您确实需要比较这两种方法。

关于mysql - 查询连接 2 个表并仅保留其中一个表中的 1 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22327651/

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