0

我有以下 2 个表,我想获取 table2 的内容并将其添加到 table1 的末尾(例如:将 2 个表合并为 1 个)。希望 ID 继续自动递增。

表格1:

 CREATE TABLE IF NOT EXISTS `world` (
   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
   `country` varchar(2) DEFAULT NULL,
   `region1` varchar(60) DEFAULT NULL,
   `region2` varchar(60) DEFAULT NULL,
   `region3` varchar(60) DEFAULT NULL,
   `zip` varchar(10) DEFAULT NULL,
   `city` varchar(60) DEFAULT NULL,
   `latitude` double DEFAULT NULL,
   `longitude` double DEFAULT NULL,
   PRIMARY KEY (`id`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5871647 ;

表2:

 CREATE TABLE IF NOT EXISTS `extra` (
   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
   `country` varchar(2) DEFAULT NULL,
   `city` varchar(60) DEFAULT NULL,
   `latitude` double DEFAULT NULL,
   `longitude` double DEFAULT NULL,
   PRIMARY KEY (`id`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=687421 ;

玩过以下游戏:

INSERT INTO world (country, city, latitude, longitude) 
VALUES SELECT country, city, latitude, longitude FROM extra;

谢谢

4

2 回答 2

2

试试这个

INSERT INTO world (country, city, latitude, longitude) 
    SELECT country, city, latitude, longitude FROM extra;
于 2012-04-04T10:26:33.883 回答
0

尝试不使用以下值。检查这个

INSERT INTO world (country, city, latitude, longitude) 
SELECT country, city, latitude, longitude FROM extra;
于 2012-04-04T10:28:43.507 回答