I have my table(input)
user_id timestamp session
1 Helen 12 25
2 Helen 10 24
3 Helen 8 20
4 Rob 30 31
5 Rob 20 40
I want to leave in table rows for every user_id
where timestamp
value is minimum (output)
user_id timestamp session
1 Helen 8 20
2 Rob 20 40
THX for your help!!!