Skip to content

Instantly share code, notes, and snippets.

@tyler274
Created October 6, 2016 03:08
Show Gist options
  • Save tyler274/2a5f7aff71abfcdd1ef1e01a0570dcbc to your computer and use it in GitHub Desktop.
Save tyler274/2a5f7aff71abfcdd1ef1e01a0570dcbc to your computer and use it in GitHub Desktop.
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