Tagged Questions

4
votes
3answers
875 views

I am designing a bus timetable using SQL. Each bus route has multiple stops, do I need a different table for each route?

I am trying to come up with the most efficient database as possible. My bus routes all have about 10 stops. The bus starts at number one until it reaches the 10th stop, then it comes back again. This ...
3
votes
3answers
1k views

Database Design for Transport timetable system

Its been a while since my Database Design classes in my sophomore year at Uni. and I haven't done any designs in the interim so my skills are at best rusty at the moment. I have begun working on a ...
2
votes
2answers
107 views

MySQL: A query to work with timetables?

In the project I'm working on right now the system stores employees' timetables in the table with the following structure: employee_id | mon_h_s | mon_m_s | mon_h_e | mon_s_e | tue_h_s | tue_m_s | ...
2
votes
3answers
1k views

Bus Timetable database design

I'm trying to design a db to store the timetable for 300 different bus routes, Each route has a different number of stops and different times for Monday-Friday, Saturday and Sunday. I've represented ...
1
vote
2answers
431 views

Howto design a public transport timetable database?

Are there any examples of database design for public transport time-tables ? Or any OpenSource timetable-engine solution? Or if not, how to do it oneselfs? How do I best design the database so that ...
0
votes
1answer
175 views

Little Employee/Shift timetable HELP!

Morning Guys, I have the following tables: operator(ope_id, ope_name) ope_shift(ope_id, shift_id, shift_date) shift(shift_id, shift_start, shift_end) here is a better view of the data ...
0
votes
3answers
152 views

Little (Employee - Shift) SQL Database help

Im creating a little database that has employee, emp_shift, shift, tables now im suppose to be able to calculate at the end of the month which employee has done the most number of shifts. Ive created ...
0
votes
3answers
494 views

SQL timetable for employee

i need to create an employee shift database. so i have 3 tables so far, employee, employee_shift, and shift im suppose to calculate how many shifts an employee has done at the end of the month, my ...
-1
votes
1answer
320 views

Representing a timetable in a database

I want to represent a timetable on a mysql database. I had the idea that i should have three tables: 1.a classdetails table- containing class capacity, classroom name e.t.c 2.a class_sessions table ...