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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Newbie Oracle SQL question

Re: Newbie Oracle SQL question

From: Harald Maier <maierh_at_myself.com>
Date: Wed, 27 Aug 2003 20:35:08 +0200
Message-ID: <m3d6ereyoz.fsf@ate.maierh>


petemarrin54_at_hotmail.com (Peter J Marrin) writes:

> I can't get Oracle to handle this type of query:
> SELECT *, 'hello' AS Greeting FROM table

Try this:

  seleect table.*, 'hello' AS Greeting FROM table; or   seleect t.*, 'hello' AS Greeting FROM table t;

Harald Received on Wed Aug 27 2003 - 13:35:08 CDT

Original text of this message

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