Bạn có thể tìm ra người dùng nào có mức độ ưu tiên cao nhất bằng cách sử dụng row_number()
. SQL Server cho phép bạn thực hiện việc này trong một CTE có thể cập nhật, vì vậy truy vấn trông giống như sau:
with toupdate as (
select t.*,
row_number() over (partition by projectid
order by (case when userid = 1 then 1
when userid = 2 then 2
when userid = 3 then 3
else 4
end
)
) as PriorityForLead
from table t
)
update toupdate
set RoleId = 11
where PriorityForLead = 1;