Created
March 12, 2013 01:45
-
-
Save MarkyC/5139612 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| booking_in_seats ==> I | |
| ================ | |
| tname | |
| section | |
| booking_num | |
| booking_for_schedule ==> S | |
| ==================== | |
| tname | |
| date | |
| time | |
| booking_num | |
| level ==> L | |
| ===== | |
| tname | |
| date | |
| time | |
| level | |
| cost ==> C | |
| ==== | |
| section | |
| level | |
| price | |
| need to use S.tname and S.booking_num to get I.section | |
| need to use S.tname and S.date and S.time to get L.level | |
| need to use I.section and L.level to get price |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment