Skip to content

Instantly share code, notes, and snippets.

@pianomanfrazier
Last active September 26, 2017 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pianomanfrazier/3440aac400aae72884938b582d37ddfa to your computer and use it in GitHub Desktop.
Save pianomanfrazier/3440aac400aae72884938b582d37ddfa to your computer and use it in GitHub Desktop.
hw1_dataset.txt
-- This is a set of data to use with USU CS5800 Homework 1, Relational Algebra
group: HomeWork1
Supplier = {
Name:string, City:string
'Amazon', 'Seattle'
'Google', 'Ventura'
'Disney', 'Anaheim'
'SDL', 'Logan'
'USU', 'Logan'
'Gusteaus', 'Paris'
}
Part = {
Name:string, Color:string, Weight:number
'Crayon', 'Red', 41
'Baseball', 'Red', 39
'Screw', 'Brown', 20
'Nut', 'Brown', 42
'Scissors', 'Green', 40
'Marker', 'Black', 45
}
Shipment = {
SupplierName:string, PartName:string
'Amazon', 'Crayon'
'Amazon', 'Screw'
'Amazon', 'Nut'
'Amazon', 'Scissors'
'Amazon', 'Marker'
'Amazon', 'Baseball'
'Disney', 'Marker'
'Disney', 'Crayon'
'SDL', 'Marker'
'USU', 'Nut'
'Google', 'Scissors'
'Google', 'Screw'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment