MySQL資料庫查詢多個欄位值全部相同的記錄

暖楓無敵發表於2018-09-07

資料庫中使用者表,資料從第三方系統匯入,由於一些垃圾資料,存在使用者名稱和密碼都相同的賬戶,造成介面上一些問題,SQL語句如下:

select User_Account,User_Pwd,COUNT(User_Account) As Account,COUNT(User_Pwd) As Account2 from base_userinfo group by User_Account,User_Pwd HAVING Account>1 and Account2>1;

使用到COUNT、GROUP BY、HAVING語法,如下圖所示:

相關文章