Ребята помогите Вот ошыбка в табле что зделать что бы таблы стали норм вот заливаю пишет : #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\' at line 10
смотрю строку 10 тут вот так
-- --------------------------------------------------------
CREATE TABLE `city` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(100) NOT NULL,
`country` int(3) NOT NULL default \'0\',
`region` int(11) NOT NULL default \'0\',
`city` int(11) NOT NULL default \'0\',
PRIMARY KEY (`id`)
) TYPE=MyISAM ;
что поменять что бы табла стала нормально?
Вместо ) TYPE=MyISAM пропиши: ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Daseones™, #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 \'ENGINE=MyISAM DEFAULT CHARSET=utf8\' at line 10
CREATE TABLE `city` (
`id` int(11) auto_increment,
`name` varchar(100) NOT NULL,
`country` int(3) NOT NULL DEFAULT \'0\',
`region` int(11) NOT NULL DEFAULT \'0\',
`city` int(11) NOT NULL DEFAULT \'0\',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET utf8;