Hi @harinathu ,
Please check with below code.
select * from (
SELECT *,row_number()over (partition by name,sal order by name asc ,sal asc,id desc ) rn
FROM [dbo].[emp]
)a where rn=1
Regards,
Zoe
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.