hi, i have such table
count id text date
1 123 blablaa 01.01.2004
2 123 booboo 12.12.2003
1 321 dddddd 14.01.2003
now i want to show only the max(count) ROW but without th group by the rest where id=123
i thought about
select text, date max(count) where id=123
but as u know if i use max i must group by the rest.
how to solve this?
regards.
count id text date
1 123 blablaa 01.01.2004
2 123 booboo 12.12.2003
1 321 dddddd 14.01.2003
now i want to show only the max(count) ROW but without th group by the rest where id=123
i thought about
select text, date max(count) where id=123
but as u know if i use max i must group by the rest.
how to solve this?
regards.