diff --git a/data/album-table.sql b/data/album-table.sql new file mode 100644 index 0000000..32cf4c7 --- /dev/null +++ b/data/album-table.sql @@ -0,0 +1,7 @@ +CREATE TABLE album ( id int(11) NOT NULL auto_increment, artist varchar(100) NOT NULL, title varchar(100) NOT NULL, PRIMARY KEY (id) ); + +INSERT INTO album (artist, title) VALUES ('The Military Wives', 'In My Dreams'); +INSERT INTO album (artist, title) VALUES ('Adele', '21'); +INSERT INTO album (artist, title) VALUES ('Bruce Springsteen', 'Wrecking Ball (Deluxe)'); +INSERT INTO album (artist, title) VALUES ('Lana Del Rey', 'Born To Die'); +INSERT INTO album (artist, title) VALUES ('Gotye', 'Making Mirrors');