J
John@home
I'm setting up a database for motorcycle-touring
It consist of nodes, routes and tours.
I currently have the following tables:
Nodes (nodeID(pk), description, ... node-data)
Route (routeID(pk), startnode, endnode, description, ... routedata)
..... There can be more then 1 route between 2 nodes ...
tour (TourID(pk), description, ... tourdata)
I want to design/implement route-sequence (= a tour).
How do I implement this sequence of routes in a relational database?
Ofcourse the order, of the routes, is important.
It consist of nodes, routes and tours.
I currently have the following tables:
Nodes (nodeID(pk), description, ... node-data)
Route (routeID(pk), startnode, endnode, description, ... routedata)
..... There can be more then 1 route between 2 nodes ...
tour (TourID(pk), description, ... tourdata)
I want to design/implement route-sequence (= a tour).
How do I implement this sequence of routes in a relational database?
Ofcourse the order, of the routes, is important.