with x as (select *,rn = row_number()
over(PARTITION BY OrderNo,item order by OrderNo)
from #temp1)
select * from x
where rn > 1
puoi rimuovere i duplicati sostituendo l'istruzione select con
delete x where rn > 1
with x as (select *,rn = row_number()
over(PARTITION BY OrderNo,item order by OrderNo)
from #temp1)
select * from x
where rn > 1
puoi rimuovere i duplicati sostituendo l'istruzione select con
delete x where rn > 1