Created
December 19, 2017 01:02
-
-
Save JZHeadley/6b39e72c9d8c7ab1b91094e3eeeb1758 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
| group: Airplanes | |
| Certified = { | |
| eid:number, aid:number | |
| 1, 1 | |
| 2, 2 | |
| 2, 3 | |
| 3, 1 | |
| 3, 4 | |
| 3, 5 | |
| 4, 1 | |
| 4, 2 | |
| 4, 3 | |
| 4, 5 | |
| } | |
| Employees = { | |
| eid:number, ename:string,salary:number | |
| 1, Allison, 100 | |
| 2, Bob, 110 | |
| 3, Charles, 110 | |
| 4, David, 120 | |
| 5, Edward, 90 | |
| } | |
| Aircraft = { | |
| aid:number, aname:string, cruisingrange:number | |
| 1,A380,7000 | |
| 2,A339,6500 | |
| 3,A320,5800 | |
| 4,B787,6300 | |
| 5,B777,6500 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment