Skip to content

Instantly share code, notes, and snippets.

@unaimillan
Last active February 6, 2024 21:35
Show Gist options
  • Save unaimillan/c342375724c939775ea295f5e1ce0911 to your computer and use it in GitHub Desktop.
Save unaimillan/c342375724c939775ea295f5e1ce0911 to your computer and use it in GitHub Desktop.
IU S24 Databases. Lab3. Example
group: IU Databases. Lab 3. Example
description: Example database for the "Databases" course in Innopolis University.
Supplier = {
SID:number, Name:string, City:string
1, Robert, Moscow
2, Denis, Saratov
3, Patrick, Moscow
4, Bailey, Kazan
}
Product = {
PID:number, Item:string, Color:string
1, door, brown
2, table, yellow
3, chair, red
4, vase, red
}
Catalogue = {
SID:number, PID:number, Quantity:number
1, 1, 50
1, 2, 69
1, 4, 33
2, 1, 42
2, 3, 85
3, 2, 12
3, 3, 24
3, 4, 36
4, 3, 11
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment