1

insert into select用来将一行从 table1 复制到 table2,除了我需要从同一个表的两个不同行中选择数据。如何才能做到这一点?

表格1

"id"    "name"      "description"   "path"                              "country"   "status"
"1"     "Title 1"   "Description 1" "US > Consumer > Home Applicances"  "US"        "0"
"2"     "Title 2"   "Description 2" "US > Business > Legal Charges"     "UK"        "0"

表 2

"id"    "name"  "description"   "path"  "newId" "newPath"   "country"   "status"

当前 Sql

insert into table2 select null, name, description, path, country, status from table1 where id=1;

试图同时做这两个

$currentId = 1;
$newId = 2;

// This'll update columns name, description, path, country, status
insert into table2 select null, name, description, path, country, status from table1 where id=$currentId;

// This'll need to update newId, newPath same row
insert into table2 newId, newPath from table1 where id=$newId;

//Trying to achiev    
insert into table2 select null, name, description, path, country, status from table1 where id=$currentId, insert into table2 //newId, newPath  select id, path from table1 where id=$newId;
4

1 回答 1

3

利用JOIN

INSERT INTO table2
SELECT t1.id, t1.name, t1.description, t1.path, t2.id, t2.path, t1.country, t1.status
  FROM table1 t1 JOIN table1 t2
    ON t1.id = $currentId AND t2.id = $newId

这是SQLFiddle演示

于 2013-06-09T05:27:12.247 回答