有两次输入相同电子邮件的情况,但有时会使用不同的lngValues.要解决这个问题,我需要从所有重复项中获取lngValue并将它们分配给一个幸存的记录并删除其余的记录.
到目前为止,我最头疼的是记录的“合并”.我想要做的是将重复记录的按位或所有lngValues放在一起.这是我到目前为止所做的,它只能按位或一起找到所有lngValues的值.
警告:前面的代码混乱
declare @duplicates table ( lngInternetPK int,lngContactFK int,lngValue int ) insert into @duplicates (lngInternetPK,lngContactFK,lngValue) ( select tblminternet.lngInternetPK,tblminternet.lngContactFK,tblminternet.lngValue from tblminternet inner join (select strAddress,lngcontactfk,count(*) as count from tblminternet where lngValue & 256 <> 256 group by strAddress,lngcontactfk) secondemail On tblminternet.strAddress = secondemail.strAddress and tblminternet.lngcontactfk = secondemail.lngcontactfk where count > 1 and tblminternet.strAddress is not null and tblminternet.lngValue & 256 <> 256 --order by lngContactFK,strAddress ) update @duplicates set lngValue = t.val from (select (sum(dupes.lngValue) & 65535) as val from (select here.lngInternetPK,here.lngContactFK,here.lngValue from tblminternet here inner join (select strAddress,lngcontactfk) secondemail On here.strAddress = secondemail.strAddress and here.lngcontactfk = secondemail.lngcontactfk where count > 1 and here.strAddress is not null and here.lngValue & 256 <> 256) dupes,tblminternet this where this.lngContactFK = dupes.lngContactFK ) t where lngInternetPK in (select lngInternetPK from @duplicates)
编辑:
根据要求,这里有一些示例数据:
表名:tblminternet
列名:
lngInternetPK
lngContactFK
lngValue
strAddress
第1行示例:
lngInternetPK:1
lngContactFK:1
lngValue:33
strAddress:“me@myaddress.com”
第2行示例:
lngInternetPK:2
lngContactFK:1
lngValue:40
strAddress:“me@myaddress.com”
如果这两个合并在这里是期望的结果:
lngInternetPK:1
lngContactFK:1
lngValue:41
strAddress:“me@myaddress.com”