Created
October 6, 2016 03:08
-
-
Save tyler274/2a5f7aff71abfcdd1ef1e01a0570dcbc 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: UIBK - R, S, T | |
description: Tables from and for the lecture [Databases: Foundations, Data Models and System Concepts - University of Innsbruck](http://dbis-informatik.uibk.ac.at/249-0-VO-Datenbanksysteme.html) chapter 3 | |
employee = { | |
person_name, street, city | |
'bob', 'a', 'newyork' | |
'bill', 'c', 'la' | |
'henry', 'd', 'la' | |
'tom', 'd', 'newyork' | |
'max', 'e', 'la' | |
} | |
works = { | |
person_name, company_name, salary | |
'bob', 'First Bank Corporation', 11000 | |
'henry', 'First Bank Corporation', 100 | |
'bill', 'apple', 200 | |
} | |
company = { | |
company_name, city | |
'First Bank Corporation', 'newyork' | |
'apple', 'la' | |
} | |
manages = { | |
person_name, manager_name | |
'henry', 'bob' | |
'tom', 'bill' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment