Skip to content

Instantly share code, notes, and snippets.

@renaud
Last active November 26, 2024 16:25
Show Gist options
  • Save renaud/e065517b37edd1f3578be3ed534ff9a7 to your computer and use it in GitHub Desktop.
Save renaud/e065517b37edd1f3578be3ed534ff9a7 to your computer and use it in GitHub Desktop.
chinook3
group: Chinook
Album = {
AlbumId:number Title:string ArtistId:number
1 "For Those About To Rock We Salute You" 1
2 "Balls to the Wall" 2
3 "Restless and Wild" 2
4 "Let There Be Rock" 1
5 "Big Ones" 3
6 "Jagged Little Pill" 4
7 "Facelift" 5
8 "Warner 25 Anos" 6
9 "Plays Metallica By Four Cellos" 7
10 "Audioslave" 8
11 "Out Of Exile" 8
12 "BackBeat Soundtrack" 9
13 "The Best Of Billy Cobham" 10
14 "Alcohol Fueled Brewtality Live! [Disc 1]" 11
15 "Alcohol Fueled Brewtality Live! [Disc 2]" 11
16 "Black Sabbath" 12
17 "Black Sabbath Vol. 4 (Remaster)" 12
18 "Body Count" 13
19 "Chemical Wedding" 14
20 "The Best Of Buddy Guy - The Millenium Collection" 15
21 "Prenda Minha" 16
22 "Sozinho Remix Ao Vivo" 16
23 "Minha Historia" 17
24 "Afrociberdelia" 18
25 "Da Lama Ao Caos" 18
26 "Acústico MTV [Live]" 19
27 "Cidade Negra - Hits" 19
28 "Na Pista" 20
29 "Axé Bahia 2001" 21
30 "BBC Sessions [Disc 1] [Live]" 22
31 "Bongo Fury" 23
32 "Carnaval 2001" 21
33 "Chill: Brazil (Disc 1)" 24
34 "Chill: Brazil (Disc 2)" 6
35 "Garage Inc. (Disc 1)" 50
36 "Greatest Hits II" 51
37 "Greatest Kiss" 52
38 "Heart of the Night" 53
39 "International Superhits" 54
40 "Into The Light" 55
41 "Meus Momentos" 56
42 "Minha História" 57
43 "MK III The Final Concerts [Disc 1]" 58
44 "Physical Graffiti [Disc 1]" 22
45 "Sambas De Enredo 2001" 21
46 "Supernatural" 59
47 "The Best of Ed Motta" 37
48 "The Essential Miles Davis [Disc 1]" 68
49 "The Essential Miles Davis [Disc 2]" 68
50 "The Final Concerts (Disc 2)" 58
}
Artist = {
ArtistId:number Name:string
1 "AC/DC"
2 "Accept"
3 "Aerosmith"
4 "Alanis Morissette"
5 "Alice In Chains"
}
Customer = {
CustomerId:number FirstName:string LastName:string Company:string Address:string City:string State:string Country:string PostalCode:string Phone:string Fax:string Email:string SupportRepId:number
}
Employee = {
EmployeeId:number LastName:string FirstName:string Title:string ReportsTo:number BirthDate:string HireDate:string Address:string City:string State:string Country:string PostalCode:string Phone:string Fax:string Email:string
}
Genre = {
GenreId:number Name:string
}
Invoice = {
InvoiceId:number CustomerId:number InvoiceDate:string BillingAddress:string BillingCity:string BillingState:number BillingCountry:string BillingPostalCode:string Total:number
}
InvoiceLine = {
InvoiceLineId:number InvoiceId:number TrackId:number UnitPrice:number Quantity:number
}
MediaType = {
MediaTypeId:number Name:string
}
Playlist = {
PlaylistId:number Name:string
}
PlaylistTrack = {
PlaylistId:number TrackId:number
}
Track = {
TrackId:number Name:string AlbumId:number MediaTypeId:number GenreId:number Composer:string Milliseconds:number Bytes:number UnitPrice:number
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment