gpt4 book ai didi

sql-server - 如何在SQL Server查询中找到最近的时间?

转载 作者:行者123 更新时间:2023-12-03 03:02:59 25 4
gpt4 key购买 nike

id     Bus arrival time
1 6:30
2 7:00
3 9:00
4 10:00
5 15:00
6 16:00

如果一类车 6:40 到达,那么最近的时间应该是 6:30

如果公交车在 9:35 到达,那么最近的时间应该是 10:00,我需要 T-SQL 查询的解决方案

提前致谢,安尼尔

最佳答案

declare @checkTime time = '6:40'

select top 1 * from schedule
order by ABS(DATEDIFF(Second, @checkTime, busArrivalTime))

SQLFIDDLE

关于sql-server - 如何在SQL Server查询中找到最近的时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17499728/

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