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

Home -> Community -> Usenet -> c.d.o.tools -> Re: What is wrong with my simple SQL syntax?

Re: What is wrong with my simple SQL syntax?

From: TurkBear <noone_at_nowhere.com>
Date: Tue, 08 May 2001 12:29:21 -0500
Message-ID: <o4bgft0b9pksou6s570msjqgki4j5mmjdc@4ax.com>

Oracle's SQL would be:

SELECT tblHippie.*, tblTrip.strName FROM tblHippie,tblTrip
where
 tblHippie.lngHippieID = tblTrip.lngHippieID;

"Kenneth Jensen" <kennethj_at_mailme.dk> wrote:

>I try to make a simple SQL syntax the way I have always done on other
>databases, but Oracle says that it hasn't been properly terminated.
>
>SELECT tblHippie.*, tblTrip.strName FROM
>tblHippie INNER JOIN tblTrip ON tblHippie.lngHippieID = tblTrip.lngHippieID
>
>Can someone please tell me, what's wrong with it?
>
>Yours sincerely
>Kenneth Jensen
>
Received on Tue May 08 2001 - 12:29:21 CDT

Original text of this message

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