gpt4 book ai didi

mysql - 检索具有最小日期的行中的所有列?

转载 作者:行者123 更新时间:2023-11-30 23:14:52 25 4
gpt4 key购买 nike

有没有办法在不使用自连接的情况下解决这样的问题?使用 min() 函数的一些方法?

我想为每组列 c1 和 c2 获取第一个水果条目。 (假设日期不能相同)

DROP TABLE IF EXISTS test;
CREATE TABLE test
(
c1 varchar(25),
c2 varchar(25),
fruit varchar(25),
currentTime Datetime
);
INSERT INTO test VALUES
('a','b','pineapple','2013-01-28 20:50:00'),
('a','b','papaya','2013-01-28 20:49:00'),
('a','b','pear','2013-01-28 20:51:00'),
('a','c','peach','2013-01-28 18:12:00'),
('a','c','plum','2013-01-28 20:40:00'),
('a','c','pluot','2013-01-28 16:50:00');

这是我当前的查询:

SELECT t2.* 
FROM (SELECT c1,
c2,
MIN(currentTime) AS ct
FROM test
GROUP BY c1, c2) as t1
JOIN test t2
ON t1.c1 = t2.c1 AND
t1.c2 = t2.c2 AND
t2.currentTime = t1.ct

这会产生每个 c1/c2 对的最早条目,但是有没有办法使用 min() 并避免自连接?

最佳答案

答案是"is"。你可以通过聚合来做到这一点。关键是使用 group_concat()/substring_index() 技巧来获得第一个水果:

select c1, c2,
substring_index(group_concat(fruit order by currentTime), ',', 1) as fruit,
min(currentTime)
from test
group by c1, c2;

这已经在您的 SQL Fiddle 上进行了测试。

关于mysql - 检索具有最小日期的行中的所有列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18392342/

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