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: [Q] need help on SQLplus select "distinct" !!

RE: [Q] need help on SQLplus select "distinct" !!

From: Mercadante, Thomas F <NDATFM_at_labor.state.ny.us>
Date: Tue, 23 Sep 2003 07:15:18 -0800
Message-ID: <F001.005D0D58.20030923071518@fatcity.com>


Mike,

You really don't need to in-line view for this. I'm also not sure what exactly you are trying to do.

You could:

select distinct employee_id, lname, fname, mi, hiredate from emp

or

select distinct employee_id from emp

what exactly are your trying to get? Distinct employee_id's? Lname's? Fname's? or a combination of all items?

Tom Mercadante
Oracle Certified Professional

-----Original Message-----
Sent: Tuesday, September 23, 2003 11:00 AM To: Multiple recipients of list ORACLE-L

I plan to select distinct data from table. anyone has suggestion?

Thanks.

select distinct employee
  from (select employee_id, lname, fname, mi, hiredate , as employee from emp)
SQL>
SQL> /
from (select employee_id, lname, fname, mi, hiredate , as employee from emp)                                                       

    *
ERROR at line 2:
ORA-00936: missing expression



Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com
--

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

Author: mike mon
  INET: mccdba_at_yahoo.com
Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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).
--

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

Author: Mercadante, Thomas F
  INET: NDATFM_at_labor.state.ny.us
Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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 Sep 23 2003 - 10:15:18 CDT

Original text of this message

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