だから.. 1つのクエリで複数の行を作成するクエリが必要です。こういうの欲しいって言って
Row 1: col1 = 'val1', col2 = 'val2', col3 = 'val3'
Row 2: col1 = 'val1', col2 = 'val2', col3 = 'val4'
Row 2: col1 = 'val1', col2 = 'val2', col3 = 'val5'
どこ
val3,val4,val5
サブクエリによって返されます。みたいなことを考えていた
insert into table_name (col1, col2, col3) values ('val1', val2, (select column_name from table_two where condition));
1つのクエリでこれを行う方法はありますか?