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

MYSQL Vælg MAX Date i en sammenslutningserklæring

Sådan noget...

SELECT t1.received_id
     , t1.transaction_id
     , t1.date_modified
     , l.location
  FROM transactions t1
  JOIN ( SELECT received_id, MAX(date_modified) maxmodify FROM transactions GROUP BY received_id) max_record
    ON max_record.received_id = t1.received_id 
   AND max_record.maxmodify = t1.date_modified
  JOIN locations l
    ON l.location_id = t1.location_id
  JOIN received r
    ON r.received_id = t1.received_id
 WHERE t1.received_id = '1782'
 ORDER 
    BY t1.date_modified DESC

hvis kerne er denne...

SELECT x.*
  FROM my_table x
  JOIN (SELECT id,MAX(thing) max_thing FROM my_table GROUP BY id) y 
    ON y.id = x.id 
   AND y.max_thing = x.thing;


  1. Hvordan kaldes et felt eller kolonne i MySQL?

  2. Sådan bruges den samme tidsplan til flere SQL Server Agent-job (T-SQL)

  3. Indstilling af netværkstimeout for JDBC-forbindelse

  4. Hvad er Oracle-ækvivalenten til SQL Servers IsNull()-funktion?