-- -- Table structure for table `tapirtest_example_5` -- CREATE TABLE `tapirtest_example_5` ( `song_id` smallint(6) NOT NULL auto_increment, `song` varchar(16) NOT NULL, `artist` varchar(16) NOT NULL, `album` varchar(32) NOT NULL, PRIMARY KEY (`song_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `tapirtest_example_5` -- INSERT INTO `tapirtest_example_5` (`song_id`, `song`, `artist`, `album`) VALUES (1, 'All for You', 'Our Lady Peace', 'Gravity'), (2, 'Faint', 'Linkin Park', 'Meteora'), (3, 'Breach Birth', 'Chevelle', 'This Type of Thinking');