I get an 1064 error when I use the following code:
CREATE TABLE `record` (
`record_id` int(11) NOT NULL auto_increment,
`record_date` date NOT NULL,
`record` text NOT NULL,
PRIMARY KEY (`record_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
Could someone please tell me what's wrong and how to fix it?