Mysql
 sql >> Database >  >> RDS >> Mysql

selezionando valore distinto ordine per desc

Quindi la tua affermazione del problema è "Vuoi l'elenco di customer_id, ordinato in ordine decrescente dal loro valore temporale più grande", giusto?

SELECT customer_id, MAX(time)
FROM table_name
GROUP BY customer_id
ORDER BY MAX(time) DESC