Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Right Join problem for ACCESS connecting to Oracle server?

Re: Right Join problem for ACCESS connecting to Oracle server?

From: Filip Hanik <fhanik_at_digitalworkforce.net>
Date: Fri, 16 Jul 1999 11:53:07 -0700
Message-ID: <saLj3.84$iY6.7547@typhoon-sf.snfc21.pbi.net>


Did you try to use PL/SQL syntax

SELECT A.EMPLID, B.NAME
FROM
  TBLEMPL A, TBLNAME B
WHERE
  A.EMPLID = B.PERSID (+) then you just continue from there

Filip

Chau Chun Ho <cs_cchaa_at_uxmail.ust.hk> wrote in message news:7mnnu9$sn7_at_ustsu10.ust.hk...
> I'm using Oracle 8.0.5 as server and ACCESS as client.
>
> When I write SQL in ACCESS to right join two tables in Oracle,
> there is no problem.
>
> However when the right join operation involved more than two tables,
> the problem is as following:
>
> e.g.
> FOR three tables A, B, C
> The case number in A is a reference for table B and C
>
> The SQL is that
> Select * from B right join ( C right join A on C.casenum = A.casenum)
> on B.casenum = A.casenum
>
> The result is that
> for all records that B join to A and C with B.casenum equal to C.casenum,
> all the fields belongs to C will become null.
>
> Is it the error cause by ODBC?
> How can I solve this problem?
> thank you very much
Received on Fri Jul 16 1999 - 13:53:07 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US