create table APP.music ( id INTEGER NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1), artist_name VARCHAR(40), album_title VARCHAR(50) ); insert into APP.music (artist_name,album_title) values ('Get Well Soon','Vexations'); insert into APP.music (artist_name,album_title) values ('Get Well Soon','Rest now weary head you will get well soon'); insert into APP.music (artist_name,album_title) values ('Alain Bashung','Bleu pétrole'); insert into APP.music (artist_name,album_title) values ('Alain Bashung','Dimanches à l''Elysée'); insert into APP.music (artist_name,album_title) values ('Archive','Controlling crowds'); insert into APP.music (artist_name,album_title) values ('Archive','Lights'); insert into APP.music (artist_name,album_title) values ('Archive','Noise'); insert into APP.music (artist_name,album_title) values ('Arctic Monkeys','Whatever people say I am that''s what I''m not'); insert into APP.music (artist_name,album_title) values ('Arctic Monkeys','Who the fuck are Arctic Monkeys ?'); insert into APP.music (artist_name,album_title) values ('Arcade Fire','Funeral'); insert into APP.music (artist_name,album_title) values ('Arcade Fire','Neon bible'); insert into APP.music (artist_name,album_title) values ('Cold War Kids','Robbers and cowards'); insert into APP.music (artist_name,album_title) values ('Cold War Kids','Loyalty to loyalty'); insert into APP.music (artist_name,album_title) values ('Eiffel','A tout moment'); insert into APP.music (artist_name,album_title) values ('Ghinzu','Mirror mirror'); insert into APP.music (artist_name,album_title) values ('Ghinzu','Blow'); insert into APP.music (artist_name,album_title) values ('Kings of Leon','Only by the night');