Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Joins
eb_at_nesa1.uni-siegen.de wrote:
>
> How can I tranlate this view to Oracle (Joins).
> It will be great to hear from you
>
> SELECT DISTINCTROW Calls.*, Tools.*, Customer.*
> FROM (Customer LEFT JOIN Tools ON Customer.KNo = Tools.KNo) LEFT JOIN
> Calls ON Tools.SNo = Calls.SNo
> WHERE (Customer.KName1= XXX));
select distinct * from calls, tools, customers where customer.kno=tools.kno(+) and tools.sno=calls.sno(+) and kname1=<xxx>
(+) means: fill records with NULL if no match Received on Wed Jun 04 1997 - 00:00:00 CDT
![]() |
![]() |