если тип экспорта INSERT будет примерно так:
--
-- Структура таблицы `cms_ratings`
--
CREATE TABLE IF NOT EXISTS `cms_ratings` (
`id` int(11) NOT NULL auto_increment,
`item_id` int(11) NOT NULL,
`points` int(11) NOT NULL,
`ip` varchar(20) NOT NULL,
`target` varchar(20) NOT NULL,
`user_id` int(11) NOT NULL default '1',
`pubdate` datetime NOT NULL,
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=4 ;
--
-- Дамп данных таблицы `cms_ratings`
--
INSERT INTO `cms_ratings` (`id`, `item_id`, `points`, `ip`, `target`, `user_id`, `pubdate`) VALUES
(1, 38, 1, '91.76.2.212', 'content', 1, '2011-04-25 16:11:45'),
(2, 13, 1, '91.76.0.221', 'comment', 1, '2011-04-27 19:50:34'),
(3, 14, 1, '91.76.0.221', 'comment', 1, '2011-04-27 19:50:38');
если тип экспорта UPDATE то так:
--
-- Структура таблицы `cms_ratings`
--
CREATE TABLE IF NOT EXISTS `cms_ratings` (
`id` int(11) NOT NULL auto_increment,
`item_id` int(11) NOT NULL,
`points` int(11) NOT NULL,
`ip` varchar(20) NOT NULL,
`target` varchar(20) NOT NULL,
`user_id` int(11) NOT NULL default '1',
`pubdate` datetime NOT NULL,
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=4 ;
--
-- Дамп данных таблицы `cms_ratings`
--
UPDATE `cms_ratings` SET `id` = 1,`item_id` = 38,`points` = 1,`ip` = '91.76.2.212',`target` = 'content',`user_id` = 1,`pubdate` = '2011-04-25 16:11:45' WHERE `cms_ratings`.`id` = 1;
UPDATE `cms_ratings` SET `id` = 2,`item_id` = 13,`points` = 1,`ip` = '91.76.0.221',`target` = 'comment',`user_id` = 1,`pubdate` = '2011-04-27 19:50:34' WHERE `cms_ratings`.`id` = 2;
UPDATE `cms_ratings` SET `id` = 3,`item_id` = 14,`points` = 1,`ip` = '91.76.0.221',`target` = 'comment',`user_id` = 1,`pubdate` = '2011-04-27 19:50:38' WHERE `cms_ratings`.`id` = 3;
если тип экспорта REPLASE так:
--
-- Структура таблицы `cms_ratings`
--
CREATE TABLE IF NOT EXISTS `cms_ratings` (
`id` int(11) NOT NULL auto_increment,
`item_id` int(11) NOT NULL,
`points` int(11) NOT NULL,
`ip` varchar(20) NOT NULL,
`target` varchar(20) NOT NULL,
`user_id` int(11) NOT NULL default '1',
`pubdate` datetime NOT NULL,
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=4 ;
--
-- Дамп данных таблицы `cms_ratings`
--
REPLACE INTO `cms_ratings` (`id`, `item_id`, `points`, `ip`, `target`, `user_id`, `pubdate`) VALUES
(1, 38, 1, '91.76.2.212', 'content', 1, '2011-04-25 16:11:45'),
(2, 13, 1, '91.76.0.221', 'comment', 1, '2011-04-27 19:50:34'),
(3, 14, 1, '91.76.0.221', 'comment', 1, '2011-04-27 19:50:38');
для импорта нужен второй или третий вариант