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

Come raggruppare in SQL per data più grande (Ordina per gruppo per)

Il mio modo preferito per costruire questo SQL è usare un not exists clausola in questo modo:

SELECT apntoken,deviceid,created 
FROM `distribution_mobiletokens` as dm
WHERE userid='20'
and not exists (
    select 1 
    from `distribution_mobiletokens`
    where userid = '20'
    and deviceid = dm.deviceid
    and created > dm.created
    )