I know the title does not sound very descriptive, but it is the best I could think of:
I have this table
ID BDATE VALUE 28911 14/4/2009 44820 2
select a.* from myview a, (select id, max(bdate) from myview group by id) b where a.id = b.id and a.bdate = b.bdate