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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: sql query

RE: sql query

From: Aponte, Tony <AponteT_at_hsn.net>
Date: Tue, 11 Dec 2001 09:46:50 -0800
Message-ID: <F001.003DA0E6.20011211092528@fatcity.com>

Oops.  The statement was wrong.  I'll try it gain:

select

  to_number(null) as id,

  to_char(null) as car_make

from

  dual

union

select

  id,

  car_make

from

  carmake

order by

  car_make NULLS FIRST;

Tony Aponte

-----Original Message-----

From: Aponte, Tony

Sent: Tuesday, December 11, 2001 12:21 PM

To: 'ORACLE-L_at_fatcity.com'

Cc: 'steven.hovington_at_procession.com'

Subject: RE: sql query

add NULLS FIRST after the ORDER BY CAR_MAKE:

select

  to_number(null) as id,

  to_char(null) as car_make

from

  dual

union

select

  id,

  car_make

from

  carmake

order by

  car_make NULLS LAST;

Tony Aponte

-----Original Message-----

From: Steven Hovington [mailto:steven.hovington_at_procession.com]

Sent: Tuesday, December 11, 2001 10:45 AM

To: Multiple recipients of list ORACLE-L

Subject: sql query

Hi,

I have this sql statement:

select

  to_number(null) as id,

  to_char(null) as car_make

from

  dual

union

select

  id,

  car_make

from

  carmake

order by

  car_make;

So this selects a blank record and then the records from carmake.  But I

want the blank record to

appear at the top of the list, and it must be done in the select statement.

Can this be done?

TIA, Thanks,

Steven Hovington

-- 

Please see the official ORACLE-L FAQ: http://www.orafaq.com

-- 

Author: Steven Hovington


  INET: steven.hovington_at_procession.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051 San Diego, California        -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from).  You may also send the HELP command for other information (like subscribing).
Received on Tue Dec 11 2001 - 11:46:50 CST

Original text of this message

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