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

MySQL-forespørgsel, MAX() + GRUPPER EFTER

(Testet i PostgreSQL 9.something)

Identificer befrielsen og tidsstemplet.

select rid, max(timestamp) as ts
from test
group by rid;

1   2011-04-14 18:46:00
2   2011-04-14 14:59:00

Deltag i det.

select test.pid, test.cost, test.timestamp, test.rid
from test
inner join 
    (select rid, max(timestamp) as ts
    from test
    group by rid) maxt
on (test.rid = maxt.rid and test.timestamp = maxt.ts)


  1. MySQL Hosting på Azure, Fuldt administreret Cloud Database Service lanceres på ScaleGrid

  2. Topfejl at undgå i MySQL-replikering

  3. Transform ODBC-data i CloverDX

  4. Efter gendannelse af min database fjernet serien fra kolonnen i Postgresql