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
Steps: Apply your filter in Sheet1 . Select the range where you want to paste the formula (e.g., A2:A100 ) but only visible cells will...
No comments:
Post a Comment