0
我有table1和table2。我想將table1中的列a和列b插入到table2中以及我自己的值(value1和value2)中。列a和b非常大,這就是爲什麼我不想將它們導入到我的Java應用程序中。另外我需要a和b選擇的條件。我的preparedStatement應該如何?我覺得像如下:從另一個表和自己的值插入到db2Table中
insert into table2 (columnvalue1, columnvalue2, a, b) as
(select a, b from table1 where value3 = ? and value4 = ?)
不要叫列值3和值4等,這只是太混亂。 – jarlh