Đây là một tùy chọn sử dụng user-defined variables
để thiết lập số hàng cho mỗi nhóm người bán và sau đó lọc vào hàng thứ 2 trong mỗi nhóm được sắp xếp theo hợp đồng:
select *
from (
select *,
@rn:=if(@prevMerchantId=merchantid,
@rn+1,
if(@prevMerchantId:=merchantid, 1, 1)
) as rn
from yourtable cross join (select @rn:=0, @prevMerchantId:=null) t
order by merchantId, contractid desc
) t
where rn = 2