Situation: I have a table structured as such:
ticket_id date time field2
What I am trying to do is take the table and strip out all duplicates of ticket_id, keeping the most recent according to the time field.
Of course, I can do a SELECT DISTINCT on just the ticket_id field, and I get just...