SELECT
a.*
FROM
users a
JOIN(
SELECT
username,
email,
COUNT(*)
FROM
users
GROUP BY
username,
HAVING
COUNT(*) > 1
) b
ON
a.username = b.username AND a.email = b.email
ORDER BY
a.email
Resetting the Password via SSH: Access the server as root: Use an SSH program like PuTTY to connect to your server as the root user. R...
No comments:
Post a Comment