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: SQL Query to get Max (Date)

Re: SQL Query to get Max (Date)

From: Sybrand Bakker <postbus_at_sybrandb.demon.nl>
Date: 7 Feb 2002 05:41:15 -0800
Message-ID: <a20d28ee.0202070541.78cef8d9@posting.google.com>


zzz_at_postmaster.co.uk (Mike Haig) wrote in message news:<ea1237b2.0202070335.6194b70_at_posting.google.com>...
> Hello, I need some help in creating a query please. I have the two tables below;
>
>
> Table 1:
>
> NameField
>
>
> Table2
>
> Namefield
> Datefield
> Message
>
> I want to get this result:
>
> Name, DateField (the datefield of the last posted message for each name).
>
> Can anyone help with this query?
>
> Thanks
>

select name, datefield
from table2 x
where datefield = (select max(datefield)

                    from table2 y
                    where y.name = x.name
                    )


Hth

Sybrand Bakker
Senior Oracle DBA

> Tony
Received on Thu Feb 07 2002 - 07:41:15 CST

Original text of this message

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