sql >> Base de Datos >  >> Database Tools >> SQLyog

Seleccione el SEGUNDO ÚLTIMO registro en cada grupo

Aquí hay un pseudocódigo sql para comenzar:

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