I have a project idea which would be much more simple if this exists; Is it possible to create sub-columns in MySQL?
This is an example of what I mean, in table form:
+--------+---------------+
| | Weekday |
| Time +-------+-------+
| | 1ST | 2ND |
+--------+-------+-------+
| 8:00 | Jim | Bob |
| 9:00 | Steve | Jim |
| 10:00 | Tod | Rick |
+--------+-------+-------+
I have to specify a primary and a secondary point of contact for every day of the week. I figured it would be very easy to have "Primary" and "Secondary" under Sunday, Saturday, etc.
A friend of mine suggested something like this would be possible, which led me to this quest.