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
Open the file for editing and paste the following snippet inside the .htaccess file: <IfModule mod_headers.c> Header always set S...
No comments:
Post a Comment