我有5列,其中我知道2列的值。 我必须使用INSERT INTO ... SELECT语句插入3个columsn的值,代码正在运行。
我只想知道如何将INSERT INTO SELECT与ORACLE中的已知值结合使用。
答案 0 :(得分:1)
insert into destination (col1, col2, col3, col4, col5)
select 'static_value1', 'static_value2', col6, col7, col8
from source_table