unique1テーブルに存在するのと同じ順序でunique1テーブルからunique2テーブルにデータを挿入したい。
insert /*+ append */ into unique2
select * from unique1 A where not exists (select 1 from match1 B where A. promolog_key = B. promolog_key) order by rowid asc;
上記のクエリは、修飾されたデータをunique1に存在するのと同じ順序で挿入しますか?
ありがとう