pavlenkora
Гуру форума
- Регистрация
- 8 Окт 2008
- Сообщения
- 188
- Реакции
- 81
- Автор темы
- #1
Вообщем импортирую базу супер дампером, вылетает такая ошибка:
Вот отрывок из базы по теме:
Подскажите в чем ошибка?
PHP:
Возникла ошибка!
Неправильный запрос.
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 `stdiscussionread` ( `userid` int(10) unsigned NOT NULL DEFAULT '' at line 2 (256)
PHP:
DROP TABLE IF EXISTS `stdiscussionread`;
CREATE TABLE `stdiscussionread` (
`userid` int(10) unsigned NOT NULL DEFAULT '0',
`discussionid` int(10) unsigned NOT NULL DEFAULT '0',
`readtime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`userid`,`discussionid`),
KEY `readtime` (`readtime`)
) ENGINE=MyISAM ;