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: Q: SQL -Only the first of every row ?

Re: Q: SQL -Only the first of every row ?

From: Frank Dietrich <ablesoft_at_gmx.de>
Date: Wed, 04 Aug 2004 14:13:43 +0200
Message-ID: <2nc27oFvacc6U1@uni-berlin.de>


Hi Ralf,

Ralf Bender schrieb:
> I got a little problem to solve. There is a table like this:
> objectnr, names, dates
> 123,data1,2004
> 123,data1,2003
> 234,data2,2003
> 456,data3,2004
> 456,data4,2004
>
> Now i want to select all rows which have 2004 in field dates, BUT i only
> want to see every objectnr once and all columns.
>
> The result should look like this:
> 123,data1,2004
> 456,data3,2004

select objectnr, names, dates

   from $your_table
  where dates=2004
  group by objectnr

regards
Frank Received on Wed Aug 04 2004 - 07:13:43 CDT

Original text of this message

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