I get an error from MySQL:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=7 AUTO_INCREMENT=7' at line 6
My SQL is:
CREATE TABLE IF NOT EXISTS `default_setup_academic` (
`academic_id` bigint(20) NOT NULL auto_increment,
`academic_name` text NOT NULL,
`academic_order` bigint(20) NOT NULL,
PRIMARY KEY (`academic_id`)
) TYPE=MyISAM AUTO_INCREMENT=7 AUTO_INCREMENT=7 ;
Why does that have an error?