1. 程式人生 > >利用主鍵刪除重複資料

利用主鍵刪除重複資料

delete a from yjj_RoleAuthority a 
    join (select count(*),RoleId, AuthorityId, max(Id) as id from yjj_RoleAuthority group by RoleId,AuthorityId having count(*) > 1 ) b 
    on a.RoleId = b.RoleId and a.AuthorityId = b.AuthorityId
where a.Id < b.Id

解釋:刪除表yjj_RoleAuthority中重複資料。表b篩選出有重複資料的並且選取出最大的主鍵,表a和表b聯合(依據自己的重複欄位來結合),最後取出結合後a.id小於b.id的資料。