Benjamona97 commited on
Commit
41326ba
1 Parent(s): 10ac718

Adds data folder

Browse files
Files changed (1) hide show
  1. data/chinook-data-dictionary.csv +65 -0
data/chinook-data-dictionary.csv ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ table_name,field,description
2
+ Artist,ArtistId,Primary key unique identifier for each artist.
3
+ Artist,Name,Name of the artist.
4
+ Album,AlbumId,Primary key unique identifier for each album.
5
+ Album,Title,Title of the album.
6
+ Album,ArtistId,Foreign key that points to the Artist table's ArtistId to identify the artist of the album.
7
+ Track,TrackId,Primary key unique identifier for each track.
8
+ Track,Name,Name of the track.
9
+ Track,AlbumId,Foreign key that points to the Album table's AlbumId to identify the album of the track.
10
+ Track,MediaTypeId,Foreign key that points to the MediaType table's MediaTypeId to identify the media type of the track.
11
+ Track,GenreId,Foreign key that points to the Genre table's GenreId to identify the genre of the track.
12
+ Track,Composer,Composer of the track.
13
+ Track,Milliseconds,Length of the track in milliseconds.
14
+ Track,Bytes,File size of the track in bytes.
15
+ Track,UnitPrice,Unit price of the track.
16
+ MediaType,MediaTypeId,Primary key unique identifier for each media type.
17
+ MediaType,Name,Name of the media type.
18
+ Genre,GenreId,Primary key unique identifier for each genre.
19
+ Genre,Name,Name of the genre.
20
+ Playlist,PlaylistId,Primary key unique identifier for each playlist.
21
+ Playlist,Name,Name of the playlist.
22
+ PlaylistTrack,PlaylistId,Foreign key that points to the Playlist table's PlaylistId to identify the playlist.
23
+ PlaylistTrack,TrackId,Foreign key that points to the Track table's TrackId to identify the track in the playlist.
24
+ InvoiceLine,InvoiceLineId,Primary key unique identifier for each invoice line.
25
+ InvoiceLine,InvoiceId,Foreign key that points to the Invoice table's InvoiceId to identify the invoice.
26
+ InvoiceLine,TrackId,Foreign key that points to the Track table's TrackId to identify the track in the invoice line.
27
+ InvoiceLine,UnitPrice,Unit price of the track in the invoice line.
28
+ InvoiceLine,Quantity,Quantity of the track purchased in the invoice line.
29
+ Invoice,InvoiceId,Primary key unique identifier for each invoice.
30
+ Invoice,CustomerId,Foreign key that points to the Customer table's CustomerId to identify the customer of the invoice.
31
+ Invoice,InvoiceDate,Date when the invoice was created.
32
+ Invoice,BillingAddress,Billing address for the invoice.
33
+ Invoice,BillingCity,Billing city for the invoice.
34
+ Invoice,BillingState,Billing state for the invoice.
35
+ Invoice,BillingCountry,Billing country for the invoice.
36
+ Invoice,BillingPostalCode,Billing postal code for the invoice.
37
+ Invoice,Total,Total amount of the invoice.
38
+ Customer,CustomerId,Primary key unique identifier for each customer.
39
+ Customer,FirstName,First name of the customer.
40
+ Customer,LastName,Last name of the customer.
41
+ Customer,Company,Company name of the customer if applicable.
42
+ Customer,Address,Address of the customer.
43
+ Customer,City,City of the customer.
44
+ Customer,State,State of the customer.
45
+ Customer,Country,Country of the customer.
46
+ Customer,PostalCode,Postal code of the customer.
47
+ Customer,Phone,Phone number of the customer.
48
+ Customer,Fax,Fax number of the customer.
49
+ Customer,Email,Email address of the customer.
50
+ Customer,SupportRepId,Foreign key that points to the Employee table's EmployeeId to identify the support representative of the customer.
51
+ Employee,EmployeeId,Primary key unique identifier for each employee.
52
+ Employee,LastName,Last name of the employee.
53
+ Employee,FirstName,First name of the employee.
54
+ Employee,Title,Title or position of the employee.
55
+ Employee,ReportsTo,Foreign key that points to the Employee table's EmployeeId to identify the employee's manager.
56
+ Employee,BirthDate,Birth date of the employee.
57
+ Employee,HireDate,Hire date of the employee.
58
+ Employee,Address,Address of the employee.
59
+ Employee,City,City of the employee.
60
+ Employee,State,State of the employee.
61
+ Employee,Country,Country of the employee.
62
+ Employee,PostalCode,Postal code of the employee.
63
+ Employee,Phone,Phone number of the employee.
64
+ Employee,Fax,Fax number of the employee.
65
+ Employee,Email,Email address of the employee.