Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: [Q] need help on SQLplus select "distinct" !!
select distinct column1, columnn2 , ...
from table;
Stephane
-----Original Message-----
mike mon
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
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).
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:14:53 CDT