我想以与 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 中存在的相同顺序插入合格数据?
谢谢