If I have a table with the following fields
ID, SomeFK, SomeTime
How would I write a query return the latest/top 3 items (based on SomeTi
SomeTi
I think I understood you correctly, can you not select the max SomeTime and then group, like this:
max
select SomeFK, max(SomeTime) from Table group by SomeFK
I could be off the mark here, as I'm not entirely sure what you mean by latest.