Viewing 2 posts - 1 through 2 (of 2 total)
Great article
Discovering
Me.Value
though changed my life-very useful when applying the same condition across multiple cells
September 18, 2020 at 7:33 am
#3789323
dealing with duplicates on a daily basis, i find this approach works well
alter table withdupes add delid int identity(1,1)
delete x
from withdupes x
inner join (
select itemno, min(delid) as keepid
from withdupes...
November 30, 2009 at 4:38 am
#1085334