I dont know how to do this, given this table:
What I need to do is a query that returns only the latest case id of every user field, for example:
How can i do this ??
thanks i cant find the way to do it.
Code:
----------------------------------- CaseId | User | Timestamp ----------------------------------- 1 | 1 | 01/26/2011 2 | 3 | 03/12/2011 3 | 2 | 03/20/2011 4 | 1 | 04/16/2011 5 | 3 | 05/17/2011 6 | 1 | 05/06/2011 7 | 1 | 08/18/2011
Code:
----------------------------------- CaseId | User | Timestamp ----------------------------------- 3 | 2 | 03/20/2011 5 | 3 | 05/17/2011 7 | 1 | 08/18/2011
thanks i cant find the way to do it.
Comment