Dus uw probleemstelling is "U wilt de lijst met klant-id's, gesorteerd in aflopende volgorde van hun grootste tijdswaarde", toch?
SELECT customer_id, MAX(time)
FROM table_name
GROUP BY customer_id
ORDER BY MAX(time) DESC
Dus uw probleemstelling is "U wilt de lijst met klant-id's, gesorteerd in aflopende volgorde van hun grootste tijdswaarde", toch?
SELECT customer_id, MAX(time)
FROM table_name
GROUP BY customer_id
ORDER BY MAX(time) DESC