SQL 查詢資料相同的記錄的SQL

2021-04-20 00:34:39 字數 319 閱讀 8934

現在有乙個表t_base_user,主鍵user_id為自動增長型別,login_name為使用者登入名。

現在資料庫中login_name出現了重名現象,現在要將這些記錄找出來,sql如下:

select * from t_base_user

where user_id in (select user_id from t_base_user t1

where t1.user_id <> (select min(user_id) from t_base_user  t2

where t2.login_name = t1.login_name))

刪除SQL資料庫中相同記錄的SQL語句

資料庫種馬 資料庫中很多表存在大量相同記錄 經高人指點刪除相同記錄 僅保留乙個 的sql語句如下 declare tmptb table id int not null sortname nvarchar 100 collate chinese prc ci as null sortnote nva...

SQL 查詢相同記錄下日期最大的一條資料

日期 編號倉庫 數量2012 05 31 c001 a店136 2012 05 29 c001 a店139 2012 05 29 c001b店5 2012 05 30 c001b店6 我只顯示最大日期的記錄,這個sql怎麼寫呀?即日期 編號倉庫 數量2012 05 31 c001 a店136 201...

sql 查詢相同記錄下日期最大的 一條

日期 編號 倉庫 數量 2012 05 31 c001 a店 136.00 2012 05 29 c001 a店 139.00 2012 05 29 c001 b店 5.00 2012 05 30 c001 b店 6.00 我只顯示最大日期的記錄,這個sql怎麼寫呀?即日期 編號 倉庫 數量 201...