Задавайте вопросы, мы ответим
Вы не зашли.
Пишу запрос
CREATE TABLE `mkp_categories` (
`id` int(11) NOT NULL auto_increment,
`module` varchar(50) NOT NULL default '',
`title` varchar(100) NOT NULL default '',
`description` text NOT NULL,
`img` varchar(100) NOT NULL default '',
`parentid` int(11) NOT NULL default '0',
`cstatus` int(1) NOT NULL default '0',
`ordern` int(11) NOT NULL default '0',
`topics` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
мне выдает
#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 '' at line 10
В чем ошибка?
Неактивен
PRIMARY KEY (`id`));
Неактивен