# # Table structure for table `songs2` # CREATE TABLE songs2 ( category text NOT NULL, title text NOT NULL, artist text NOT NULL, time text NOT NULL, description text NOT NULL, picture text NOT NULL ) TYPE=MyISAM; # # Dumping data for table `songs2` # INSERT INTO songs2 VALUES ('Jazz', 'Nutty', 'Thelonius Monk', '6:35', 'Monk cracks the keys on this one!', 'nutty'); INSERT INTO songs2 VALUES ('Psychedelia', 'Tangier', 'Donovan', '4:10', 'With a dry hot drone and the rhythm of experience, Donovan further experiments in cultural mood.', 'tangier'); INSERT INTO songs2 VALUES ('Psychedelia', 'Inagadadavida', 'Iron Butterfly', '28:70', 'The most purposeful psychedelic heavy rock song ever recorded which is its only drawback. Eden - a wild land of majestic heights dropping to drops of dew under ancient fern - the snake roars or is it your mind as decision draws near.', 'inagadadavida'); INSERT INTO songs2 VALUES ('Psychedelia', 'Sudh Sarang', 'Ravi Shankar', '29:27', 'The music has eyes and a voice that describes what it sees as it lopes across the land', 'sudh'); INSERT INTO songs2 VALUES ('Jazz', 'The Pink Panther Theme', 'Henry Mancini', '2:35', 'Ironic sophistication will never be better captured. Mancini must have been in Clouseau\'s coat when humming up this one.', 'pink'); INSERT INTO songs2 VALUES ('Psychedelia', 'Gomper', 'The Rolling Stones', '5:12', 'By the lake with Lilly flowers - an ode to a peacefully picnic. A frolic in the sunshine - slightly tribal like the soundtrack to a Rousseau painting.', 'gomper'); INSERT INTO songs2 VALUES ('Jazz', 'Bitches Brew', 'Miles Davis', '26:59', 'Miles lets the band have some experimental room - travellers on the big city streets and brings in his horn like the wind curling their coats.', 'brew');