Ошибка
SQL-запрос:
--
-- Дамп данных таблицы `logs`
--
INSERT INTO `logs` ( `qid` , `ip` )
VALUES ( 31, '85.173.64.31' ) , ( 33, '85.173.64.31' ) , -- --------------------------------------------------------
--
-- Структура таблицы `quotes`
--
CREATE TABLE IF NOT EXISTS `quotes` (
`id` int( 4 ) NOT NULL AUTO_INCREMENT ,
`moderator` tinytext NOT NULL ,
`date` tinytext NOT NULL ,
`rating` int( 4 ) NOT NULL ,
`content` text NOT NULL ,
`status` enum( 'checked', 'unchecked' ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8 AUTO_INCREMENT =6;
Ответ 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 'CREATE TABLE IF NOT EXISTS `quotes` (
`id` int(4) NOT NULL AUTO_INCREMENT,
`' at line 16