CREATE TABLE `new_jokes` ( `ID` int(6) NOT NULL auto_increment, `Category` varchar(255) default NULL, `Joke` text, PRIMARY KEY (`ID`), KEY `Category` (`Category`) ) ENGINE=MyISAM AUTO_INCREMENT=9986 DEFAULT CHARSET=latin1 AUTO_INCREMENT=9986 ; INSERT INTO `new_jokes` VALUES (1, 'Random rnjoke of the day', 'What''s the difference between Windows rn95 and a rnvirus? rnA virus does something.'); INSERT INTO `new_jokes` VALUES (2, 'Random joke of the day', 'Q: What goes VROOM, SCREECH,VROOM, rnrnSCREECH,VROOM, SCREECH?rnA: A blonde going through a flashing red rnlight.'); INSERT INTO `new_jokes` VALUES (3, 'Email this funny joke to a friend!', 'What''s the difference rnrnbetween Windows 95 and a virus? rnA virus does something.');