Tagged Questions

2
votes
2answers
99 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
2answers
197 views

Modifying a PHP/Mysql timetable

I currently have this code: $rawsql2 = "SELECT * FROM _erc_foffices n INNER JOIN _erc_openings o ON n.id = o.branch_id ...
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
636 views

Multi-class, interlinked school timetable as a MySQL database

I've looked around for a bit now at other suggestions relating to this, but nothing I've seen has quite suited my needs, so here goes! What I have is a multi-class (Australian secondary school; Years ...
0
votes
2answers
34 views

PHP / MySQL timetable comparison

I have an idea for a project that I am currently working on, I am however struggling to find a way to implement this in PHP/MySQL. I have a database with a list of activities that a tattoo parlour ...
0
votes
1answer
141 views

Using a converted Unix Timestamp to query the database

I am currently using this: $rawsql = "SELECT * FROM _erc_foffices n INNER JOIN _erc_openings o ON n.id = o.branch_id AND o.dotw = DAYOFWEEK(CURRENT_DATE()) INNER JOIN ...
0
votes
2answers
161 views

PHP opening times & embassy holidays

I've been using this code: $rawsql = "SELECT * FROM _erc_foffices n INNER JOIN _erc_openings o ON n.id = o.branch_id AND o.dotw = DAYOFWEEK(CURRENT_DATE()) INNER JOIN ...
0
votes
2answers
58 views

Possible to sort via two time stamps and display same row twice

I'm looking at creating a time table solution. I have a task sheet that looks like Area 1 item 1 startTime endTime Area 1 item1 startTime endTime I wish to create a display where I can view ...
0
votes
2answers
251 views

Have a dual-timetable system

I am trying to do a dual-timetable system thing. Basically, it's for a school project, and some schools have week 1 and week 2 systems. The way this works is through alternating each week, so at ...
-1
votes
1answer
308 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 ...