I am trying to find a record in the database that has the lowest value of its datetime column. In simpler words, I want to find a record with the earliest time.
I can use minimum to find the lowest value, but that will only return the value itself, and not the whole record.
I suppose I could create another query, but I'm wondering if there is a more efficient way of doing this.