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

Come trovare il record precedente [n-per-group max(timestamp)

L'ultimo approccio con variabili è ragionevole. Potresti anche provare:

SELECT collect.*,
       (select max(timestamp)
        from data
        where data.channel_id = collect.channel_id AND data.timestamp < collect.timestamp
       ) AS prev_timestamp
FROM data AS collect 
WHERE collect.channel_id = 14 AND collect.timestamp >= 0 
ORDER BY collect.timestamp;

Inoltre, crea indici su:collect(channel_id, timestamp).

MODIFICA:

Il seguente potrebbe essere il più veloce:

  select d.*,
         if(@channel_id = channel_id, @prev_timestamp, NULL) as prev_timestamp,
         @channel_id := channel_id, @prev_timestamp = timestamp
  from data d cross join
       (select @channel_id := 0, @prev_timestamp := 0) vars
  where collect.channel_id = 14 AND collect.timestamp >= 0 
  order by channel_id, timestamp;