I have a table called Objects which contains some files, say:
- User
- Teacher
There is another table (States) which holds the possible states of these objects, like:
- Active
- Idle
- Teaching
- Resting
- Authoring
And there is a third table (junction table) which logs each state change of each object. In this third table (ObjectStates) records are like:
- 1, 1, DateTime1 (User was active on DateTime1)
- 2, 5, DateTime2 (Teacher was authoring on DateTime2)
etc.
Now, what I want is a query to get each object, with its latest state (not state history). It's possible to get this result using cursors, or using Cross Apply command. However, I'd like to know if there is any other way to get the latest states of each object from these three tables? Because cursors are costy.
ObjectStatestable and only have that flag on the latest record. – Albin Sunnanbo Nov 13 '12 at 10:46CROSS APPLYbecause you're on SQL Server 2000 or something? Another option is to useROW_NUMBER(), but that is also not available in SQL Server 2000.) – Dems Nov 13 '12 at 10:53APPLY? The answers here are good, but so isOUTER APPLY (SELECT TOP 1 * FROM x WHERE blah ORDER BY timestamp DESC) AS ActiveState– Dems Nov 13 '12 at 10:55