技术成就梦想

知道用户需求,做到专注!c#,donet,Frameworks,UML,面向对象,设计模式!
随笔 - 322, 文章 - 11, 评论 - 129, 阅读 - 96万
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

删除重复报告和回复

Posted on   我不是高手  阅读(178)  评论(0编辑  收藏  举报

--删除重复报告
Select * into #Tmp from Sms_SendHistoryReport
Select min(ReportID) as ReportID into #Tmp2 from #Tmp group by HistoryID,PhoneNum,State,SendTime,IsSended
Select * from #Tmp where ReportID in (Select ReportID from #Tmp2)

delete from Sms_SendHistoryReport where ReportID not in (Select ReportID from #Tmp2)

drop table #Tmp
drop table #Tmp2

 

 

 

点击右上角即可分享
微信分享提示