Skip to content

Instantly share code, notes, and snippets.

@Khazbs
Created October 2, 2019 17:47
Show Gist options
  • Save Khazbs/a54601fe5c8cb9133d937f09a1f42760 to your computer and use it in GitHub Desktop.
Save Khazbs/a54601fe5c8cb9133d937f09a1f42760 to your computer and use it in GitHub Desktop.
Hotel Homework dataset
-- Arthur Khazbulatov (BBI1803)
group: HotelHomework
RoomType = {
tid:number, rtName:string, nightPrice:number
1, "Standard single", 15
2, "Standard double", 20
3, "Luxury double", 25
4, "Family4", 35
}
Room = {
tid:number, rid:number, Number:number, s:number, seaView:boolean
}
Guest = {
gid:number, gName:string, email:string, country:string
}
Stay = {
sid:number, gid:number, rid:number, start:date, nights:number, isFinished:boolean
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment