gpt4 book ai didi

mysql - SQL 可能性路由目标

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

enter image description here

上图为巴士路线表,巴士路线是这样的:-
纽约 > 马来亚路 > 京士顿路 > 新城

但是我想得到如下结果:

enter image description here

Result is the List of Passenger possible use the bus to the destination

我正在使用 MySql

最佳答案

我认为您的图像有点不对,因为第一个注册表要显示

    from_loc              to_loc
New York Street Malaya Road

所以,你需要的查询是这样的:

select a.loc_id from_loc_id, 
b.loc_id to_loc_id,
a.loc_name from_loc,
b.loc_name to_loc,
a.route_id
from routes a,
routes b
where a.loc_id < b.loc_id
order by a.loc_id, b.loc_id

我稍微改了一下名字。在 fiddle 上看到它:http://sqlfiddle.com/#!2/4443a1/5

关于mysql - SQL 可能性路由目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20390970/

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