将值从多个源插入表中

时间:2017-02-16 10:50:22

标签: mysql insert

我想将数据插入到表的3列中。 2列来自其他表,第三个值是数组变量。我需要在循环中处理它。有人可以帮忙吗?

我想要下面的内容,

Insert into table_name (col1,col2,col3)  values  ((Select a,b from Source_table),array_variable(i));

这可能吗?

1 个答案:

答案 0 :(得分:1)

Insert into table_name (col1, col2, col3) 
Select a, b, 'static value'
from Source_table