sql >> Database >  >> RDS >> Mysql

MySQL-query, MAX() + GROUP BY

(Getest in PostgreSQL 9.iets)

Identificeer de ontdoen en tijdstempel.

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

Doe mee.

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. Hoe voeg ik een automatisch oplopende primaire sleutel toe aan een bestaande tabel in PostgreSQL?

  2. SQL Server In-Memory OLTP:de basis

  3. Hoe ELKE / SOMMIGE logische operator in SQL Server te gebruiken - SQL Server / TSQL-zelfstudie, deel 127

  4. Meerdere records invoegen in orakel