------在SQL中,將查詢的結果創建為新表是如下這樣的
select distinct t1.column1,.t2.column2 into table3 from table1.t1 join table2.t2 on(t1.column1=t2.column3);
------在Orale中,完成同樣的過程,是這樣的
Create table ed as( select distinct e.deptno,d.loc from emp e join dept d on (d.deptno=e.deptno)