Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Selecionando as linhas MySQL mais recentes por MAX(time) WHERE time <=x


você pode fazer isso com subconsulta:
select t.userID, max(t.time)
from
   (
     select userID, time
     from tableName
     where time <= nnn
   ) t
group by t.userID

ou simplesmente :
     select userID, max(time)
     from tableName
     where time <= nnn
     group by userID