SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `comictitles` -- -- -------------------------------------------------------- -- -- Table structure for table `titles` -- CREATE TABLE IF NOT EXISTS `titles` ( `ID` int(14) NOT NULL, `title` text NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `titles` -- INSERT INTO `titles` (`ID`, `title`) VALUES (1, 'The first Comic'), (2, 'the second comic'), (3, '3rd'), (4, '4'), (5, 'IV'), (6, 'etc etc etc'),