-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert-data.cql
73 lines (50 loc) · 5.22 KB
/
insert-data.cql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
USE songbrowser;
/** Albums */
INSERT INTO albums (artist, release_year, album_title, genre, record_label, producer)
VALUES ('Red Hot Chili Peppers', 2002, 'By the Way', 'Funk', 'WMG', {name: 'Warner Music GrouXp', country_code: 'us'});
INSERT INTO albums (artist, release_year, album_title, genre, record_label, producer)
VALUES ('System of a Down', 2005, 'Hypnotize', 'Hard rock', 'American', {name: 'American Records', country_code: 'us'});
INSERT INTO albums (artist, release_year, album_title, genre, record_label, producer)
VALUES ('System of a Down', 2005, 'Mezmerize', 'Hard rock', 'American', {name: 'American Records', country_code: 'us'});
/** Songs by album */
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 1, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Soldier Side');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 2, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'BYOB');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 3, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Revenga');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 4, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Cigaro');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Hypnotize', 1, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Soldier Side');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Hypnotize', 2, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Attack');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Hypnotize', 3, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Dreaming');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2002, 'By the Way', 1, 'Red Hot Chili Peppers', 'Funk', ['Kiedis', 'Frusciante', 'Flea', 'Smith'], 'By the Way');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2002, 'By the Way', 2, 'Red Hot Chili Peppers', 'Funk', ['Kiedis', 'Frusciante', 'Flea', 'Smith'], 'Universally Speaking');
INSERT INTO songs_by_albums (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2002, 'By the Way', 3, 'Red Hot Chili Peppers', 'Funk', ['Kiedis', 'Frusciante', 'Flea', 'Smith'], 'This Is the Place');
/** Songs by artist */
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 1, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Soldier Side');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 2, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'BYOB');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 3, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Revenga');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Mezmerize', 4, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Cigaro');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Hypnotize', 1, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Soldier Side');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Hypnotize', 2, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Attack');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2005, 'Hypnotize', 3, 'System of a Down', 'Hard rock', ['Tankian', 'Malakian', 'Odadjian', 'Dolmayan'], 'Dreaming');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2002, 'By the Way', 1, 'Red Hot Chili Peppers', 'Funk', ['Kiedis', 'Frusciante', 'Flea', 'Smith'], 'By the Way');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2002, 'By the Way', 2, 'Red Hot Chili Peppers', 'Funk', ['Kiedis', 'Frusciante', 'Flea', 'Smith'], 'Universally Speaking');
INSERT INTO songs_by_artists (release_year, album_title, track_no, artist, genre, performers, song_title)
VALUES (2002, 'By the Way', 3, 'Red Hot Chili Peppers', 'Funk', ['Kiedis', 'Frusciante', 'Flea', 'Smith'], 'This Is the Place');