如何在mysql中通过Multiple Select Statement插入

时间:2013-08-29 05:31:01

标签: mysql select insert

我有桌子:

Credit_account
==============

Acid int (PK)(AI) 
Customer Id(Foreign Key ref Customer Table)
Credit Account char(15);

我想将记录插入

1          2             1-2
2          3             2-3
3          1             1-3

1 个答案:

答案 0 :(得分:0)

您必须使用select语句有什么特定原因吗?然后有一些缺失的信息。

如果必须使用select语句,可能是因为此表中的数据来自JOIN。否则,您不需要多个SELECT语句。 INSERT语句就足够了。