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 -> select distinct

select distinct

From: Mark Foley <foleym_at_meftechno.com>
Date: 27 Aug 1999 17:53:01 PDT
Message-ID: <7q7btd$d5r@chronicle.concentric.net>


I have a table with the following columns

customerno        name
1234              John
1234              Bill
1235              Jan
1236              Mark


What I want for a result set is:
1234              John
1235              Jan
1236              Mark


If I use "select distinct customerno,name from table" I still get all of the rows.

"select distinct customerno from table" gets the unique customer numbers, but not the names.

I have to believe there is a sql statement that will accomplish this... Can anyone help? Received on Fri Aug 27 1999 - 19:53:01 CDT

Original text of this message

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