Oracle:
select 1表.名稱,1表.價格1,2表.價格2 from 1表,2表 where 1表.名稱(+)=2表.名稱;SQLServer:
select 1表.名稱,1表.價格1,2表.價格2 from 1表 left join 2表 on (1表.名稱(+)=2表.名稱);