每辆巴士不止一次来到巴士站。巴士有一条路线。它将通过相同的路线返回。
例如。我在A站。巴士路线从ESU到SYR。我需要在上午9点之后搜索从A站到SYR的公共汽车。所以在搜索的同时我也得到从A站到ESU的公共汽车(即反向航线)。如何在数据库设计中管理相同的内容。
我的表是:
Routes ( route_id, route_name).
stops (stop_id, stop_name)
Route_details(route_id, stop_no, stop_id, minutes) minutes -> time from one stop to other
schedule(route_id, bus, start_time)
我的数据库设计是否正确?有人可以帮忙解决我的问题吗?