Skip to content

3436. Find Valid Emails 👍

1
2
3
4
SELECT user_id, email
FROM Users
WHERE email REGEXP '^[A-Za-z0-9_]+@[A-Za-z]+\.com$'
ORDER BY 1;