# # Table structure for table `songs` # CREATE TABLE songs ( category text NOT NULL, title text NOT NULL, artist text NOT NULL, time text NOT NULL ) TYPE=MyISAM; # # Dumping data for table `songs` # INSERT INTO songs VALUES ('Jazz', 'Nutty', 'Thelonius Monk', '6:35'); INSERT INTO songs VALUES ('Psychedelia', 'Tangier', 'Donovan', '4:10'); INSERT INTO songs VALUES ('Psychedelia', 'Inagadadavida', 'Iron Butterfly', '28:70'); INSERT INTO songs VALUES ('Psychedelia', 'Sudh Sarang', 'Ravi Shankar', '29:27'); INSERT INTO songs VALUES ('Jazz', 'The Pink Panther Theme', 'Henry Mancini', '2:35'); INSERT INTO songs VALUES ('Psychedelia', 'Gomper', 'The Rolling Stones', '5:12'); INSERT INTO songs VALUES ('Jazz', 'Bitches Brew', 'Miles Davis', '26:59');