码迷,mamicode.com
首页 > 数据库 > 详细

sql去重复

时间:2018-05-29 14:07:30      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:from   login   执行   sel   ndt   假设   iss   ESS   sql   

  • 假设存在一个主键ID,Name为重复列,下面这句可以查出所有的没有重复的数据:  

  • select * from 表 as a where ID=(select min(ID) from 表 where Name=a.Name) 。

  • 根据上面这句就可以删除所有重复项的数据:                                                    

  • delete from 表 where ID not in(select ID from 表 as a where ID=(select min(ID) from 表 where Name=a.Name))。

   执行:select * from T_COM_SMSCLog as a where ID=(select min(ID) from T_COM_SMSCLog  where LoginName=a.LoginName and SendType=2 and IsSuccess!=1 and SMSId=505)

sql去重复

标签:from   login   执行   sel   ndt   假设   iss   ESS   sql   

原文地址:https://www.cnblogs.com/yidengbone/p/9104509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!