gpt4 book ai didi

mysql - 如何从mysql中的多个相同日期获取最新的日期时间

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

如何从 mysql 中的多个相同日期获取最新的日期时间?

SELECT start_time FROM times WHERE start_time BETWEEN '2013-01-27' AND '2013-02-02' ORDER BY start_time

这个输出:

2013-01-27 00:00:00 
2013-01-28 09:00:00
2013-01-29 00:00:00
2013-01-30 09:00:00
2013-01-31 00:00:00
2013-02-01 09:00:00
2013-02-01 21:00:00
2013-02-02 00:00:00

除了我想要 2013-02-01 的最新日期时间外,我希望所有这些都输出所以它会像这样输出:

2013-01-27 00:00:00 
2013-01-28 09:00:00
2013-01-29 00:00:00
2013-01-30 09:00:00
2013-01-31 00:00:00
2013-02-01 21:00:00 <<<<<<<<
2013-02-02 00:00:00

最佳答案

SELECT MAX(start_time)
FROM times
WHERE start_time BETWEEN '2013-01-27 00:00:00' AND '2013-02-02 23:59:59'
GROUP BY DATE(start_time)
ORDER BY start_time

关于mysql - 如何从mysql中的多个相同日期获取最新的日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14768108/

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