我想将数据插入到表的3列中。 2列来自其他表,第三个值是数组变量。我需要在循环中处理它。有人可以帮忙吗?
我想要下面的内容,
Insert into table_name (col1,col2,col3) values ((Select a,b from Source_table),array_variable(i));
这可能吗?
答案 0 :(得分:1)
Insert into table_name (col1, col2, col3)
Select a, b, 'static value'
from Source_table