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: How would I write this sql

Re: How would I write this sql

From: David Fitzjarrell <oratune_at_msn.com>
Date: 6 Jun 2003 21:45:05 -0700
Message-ID: <32d39fb1.0306062045.37415c46@posting.google.com>


"Jake" <oracle-news_at_heyjay.com> wrote in message news:<bbrj7t$599$1_at_bob.news.rcn.net>...
> How can I write this sql?
>
> SQL> SELECT user.id
> 2 FROM organization user
> 3 WHERE userid = 'myname'
> 4 /
> SELECT user.id
> *
> ERROR at line 1:
> ORA-00923: FROM keyword not found where expected
>
> I'm not able to change the table alias. And I know the error is from "user"
> being a pseudo column.
>
> but is there some sort of quoting, or something I could do, and leave the
> table alias?
>
> Thanks
> Jay

SELECT "user".id
FROM organization "user"
WHERE userid = 'myname';

should work.

David Fitzjarrell Received on Fri Jun 06 2003 - 23:45:05 CDT

Original text of this message

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