SQLyog
 sql >> Base de Dados >  >> Database Tools >> SQLyog

Selecione o SEGUNDO ÚLTIMO registro em cada grupo


Aqui está algum pseudo-código sql para você começar:
select
  penultimate.*
from data as penultimate
left join (
  /* query on data to return last row frome each group */
) as ultimate
  on /* sql to join 2nd last record on each group to last group */
where not ultimate.SerialNo is null