Skip to content

Instantly share code, notes, and snippets.

@mi11y
Created November 10, 2018 04:23
Show Gist options
  • Save mi11y/3d6d0d947e34876f6f763768effb8ee6 to your computer and use it in GitHub Desktop.
Save mi11y/3d6d0d947e34876f6f763768effb8ee6 to your computer and use it in GitHub Desktop.
parts suppliers and catalog
group: suppliers_schema
Suppliers = {
sid:number, sname:string, city:string
1, 'Acme', 'Virgina'
2, 'BlackMesa', 'Atlanta'
3, 'ValveCorp', 'Seattle'
}
Parts = {
pid:number, pname:string, color:string
1, 'Lugermorph', 'blue'
2, 'Flying Guillotine', 'grey'
3, 'Batsaber', 'red'
}
Catalog = {
sid:number, pid:number, cost:number
1, 3, 14
2, 1, 6
3, 2, 7
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment