0

我在 a2 数据库中有 cat 表我想将来自不同数据库的不同表中的 id、img 列插入

INSERT INTO a2.cat (id, img) 从 topshop_test.product 中选择 id,从 topshop_test.product-images 中选择名称;

4

1 回答 1

2

我认为您需要考虑JOIN为此使用 a :

INSERT INTO a1.cat (id, img)
SELECT p.id, pi.name
FROM topshop_test.product p 
    JOIN topshop_test.product-images pi ON p.id = pi.productid

这假设 product-images 表有一个链接到 product 表的 productid 字段。

于 2013-05-27T02:22:54.627 回答