我爲Buses
和Route
和Stop
表從停止需要MySQL查詢的搜索總線和停止
Buses
表
id , bus_name
1 AAA
2 BBB
Stop
表
id, stop_name, latitude, longitude
1 XYZ 12.5555 77.222
2 SSS 13.5555 77.2888
3 EEE 88.444 77.222
4 C 34.8859309 -97.47070
5 JJJ 32.9902355 -97.99804
route
表
id, bus_id, stop_id, arrival_time, departure_time, START_END_STOP
1 1 1 0000 8.00AM START
2 1 2 8.10AM 8.10AM
3 1 3 8.15AM 8.16AM
4 1 4 8.20AM 8.20AM
5 1 5 8.25AM 0000 END
6 2 1 0000 8.10AM START
7 2 3 8.15AM 8.18AM
8 2 5 8.27AM 0000 END
現在我搜索從停止XYZ
到JJJ
我想結果是
bus_name from_stop_name departure_time to_stop_name arrival_time Notes
AAA XYZ 8.00AM JJJ 8.25AM NIL
BBB XYZ 8.10AM JJJ 8.27AM NIL
或者我搜索停止從XYZ
到C
bus_name from_stop_name departure_time to_stop_name arrival_time Notes
AAA XYZ 8.00AM C 8.20AM NIL
BBB XYZ 8.10AM JJJ 8.27AM JJJ to C is 600 Mts
我需要Mysql的選擇查詢,請幫我。 謝謝
提供您爲此嘗試過的查詢。 – Viki888
是你的意思是源到目的地的兩個站搜索? –
@pawansen是的,我搜索源到目的地 –