Hừ! Đây là một truy vấn ưu tiên. Điều đó nghe giống như row_number()
được gọi cho:
select t1.personid, t1.employment
from (select t1.*,
row_number() over (partition by personid
order by (case when employment <> 'Stayed the same' then 1 else 2 end),
date desc
) as seqnum
from t1
) t1
where seqnum = 1;