create table temp1 as ( select table_1.cust_id, table_1.invoice_amt, table_2.payment_date from table_1@dblink, table_2@dblink where table_1.cust_id = table_2.cust_id )
我不是甲骨文公司,但是那应该做您想要的(尽管未测试)。

create table temp1 as ( select table_1.cust_id, table_1.invoice_amt, table_2.payment_date from table_1@dblink, table_2@dblink where table_1.cust_id = table_2.cust_id )
我不是甲骨文公司,但是那应该做您想要的(尽管未测试)。