gpt4 book ai didi

mysql - 获取最短距离的记录

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

我试图通过下面的查询获取最小距离的记录,但我没有得到任何返回。正在执行查询,但结果为空。如何获得最短距离的记录?

查询:

SELECT mac, stop_name, stop_distance, speed 
FROM behaviour
WHERE stop_distance = (SELECT MIN(stop_distance)
FROM behaviour)
AND mac = '10:A5:D0:06:C6:E9'
AND stop_name = 'Stadthalle'
LIMIT 1

屏幕截图:

enter image description here

最佳答案

您不需要返回最小距离的子查询,只需在查询中添加 Order by 即可你会得到你的结果

  SELECT mac, stop_name, stop_distance, speed 
FROM behaviour
WHERE mac = '10:A5:D0:06:C6:E9'
AND stop_name = 'Stadthalle'
ORDER By stop_distance
LIMIT 1

关于mysql - 获取最短距离的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30990546/

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