Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: For only ORACLE Guru
The SQL-99 RIGHT JOIN syntax is not supported by Oracle until release
9i.
Right outer joins in Oracle up to 8.1.7 are performed by appending (+) to the join condition. Note that for a right outer join, the (+) is applied to the left side of the join predicate.
For example:
SELECT A.*, B.*
FROM A, B
WHERE A.id (*) = B.id;
is equivalent to the SQL-99
SELECT A.*, B.*
FROM A RIGHT JOIN B ON A.id = B.id;
Regards, Andy
"supporto" <supporto_at_tamautomazione.com> wrote in message news:<GzVU8.33475$Jj7.882650_at_news1.tin.it>...
> Dear friends, from my client with ADO + oracle driver ODBC 8i (v.8.1.77)
> when I try to execute a SQL Statement I alway receive the message
>
> -2147217900 [Oracle][ODBC]Syntax error or access violation.
>
> When I Delete from query table CentriCo (is better if you see the image in
> attach) I didn't error
>
> Can anyone help me?
>
> select count(*) from {oj Contatori RIGHT JOIN (Ubicazio RIGHT JOIN
> (TipStrut RIGHT JOIN (TemplPre RIGHT JOIN ((CentriCo RIGHT JOIN Struttur ON
> CentriCo.Id = Struttur.IdCentriCo) INNER JOIN (Richiede RIGHT JOIN (Priorita
> RIGHT JOIN (Commesse RIGHT JOIN (CodGuast RIGHT JOIN (Storico INNER JOIN
> Attivita ON Storico.Id = Attivita.IdStorico) ON CodGuast.Id =
> Storico.IdGuasto) ON Commesse.Id = Storico.IdCommessa) ON Priorita.Id =
> Storico.IdPriorita) ON Richiede.Id = Storico.IdRichied) ON Struttur.Id =
> Attivita.IdStruttur) ON TemplPre.Id = Attivita.IdTemplPre) ON TipStrut.Id =
> Struttur.IdTipStrut) ON Ubicazio.Id = Struttur.IdUbicazio) ON Contatori.Id =
> TemplPre.IdContatori } WHERE Storico.F_Stato IN ( 1,2) AND
> ((Attivita.NProgr = 0)) AND ((Storico.F_TipMan = 0 And Storico.F_TipPreve
> IN (0,3,1,2,5)) OR (Storico.F_TipMan IN (1,2)))
Received on Thu Jul 04 2002 - 08:45:24 CDT
![]() |
![]() |