with x as (select *,rn = row_number()
over(PARTITION BY OrderNo,item order by OrderNo)
from #temp1)
select * from x
where rn > 1
bạn có thể xóa các bản sao bằng cách thay thế câu lệnh chọn bằng
delete x where rn > 1