I have a table that contains a client_id, task_id, comment_text, posted_timestamp. Within the client id there can be many task ids so I would could see records with the same client_id with different task ids. Also there could be multiple records with the same client id and task id but with different comments posted to the task at different times. What I am trying to do is select the last posted comment per client id, task id. How would I do this using the Max function?
Tags: