I have a table setup like this (simplified for example):
user_id
item_id
click_dt
Each item_id has many user_id's. Basically it's storing the clicks on items, associated to a user_id.
I want to query through this and list only the latest user_id for each item_id, based on click_dt.
So if there are 5 clicks for item_id 55, the last click or click_dt DESC would be the record to show....
Make sense? Any help would be awesome... thanks!