📜  查找重复用户名的 sql 语句是什么 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:52.529000             🧑  作者: Mango

代码示例2
/* This SQL Query will show each of those duplicate
rows individually instead of just grouping it */
SELECT username,email 
FROM `users` 
WHERE `username` 
IN (SELECT username FROM `users` GROUP BY username HAVING COUNT(username) > 1)