mikedaruke
Technical User
I have one big table like this
ID, name, neighborhood, street, date, moreinfo, etc
I want do a
select name, neighborhood, street, max(date)
from table group by name, neighborhood, street
as that gives me exactly what i need.
Then somehow I need to get the ID field to end up getting other information in the table. But the ID field is a key and is unique per row. Once I get the max date I then need the other info, but don't know how to get it.
Any help?
ID, name, neighborhood, street, date, moreinfo, etc
I want do a
select name, neighborhood, street, max(date)
from table group by name, neighborhood, street
as that gives me exactly what i need.
Then somehow I need to get the ID field to end up getting other information in the table. But the ID field is a key and is unique per row. Once I get the max date I then need the other info, but don't know how to get it.
Any help?