Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Zapytanie MySQL, MAX() + GROUP BY

(Testowane w PostgreSQL 9.coś)

Zidentyfikuj rid i znacznik czasu.

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

Dołącz do niego.

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wybierz 10 najlepszych rekordów dla każdej kategorii w MySQL

  2. Funkcja hasła MySQL

  3. Jak podłączyć PHP do MySQL

  4. Znajdź rekordy z jednej tabeli, które nie istnieją w innej

  5. Przykłady transakcji PHP + MySQL