-
Notifications
You must be signed in to change notification settings - Fork 4
Find Users With Valid E-Mails #43
-
Beta Was this translation helpful? Give feedback.
All reactions
Answered by
iamAntimPal
Mar 22, 2025
SELECT *
FROM Users
WHERE REGEXP_LIKE(mail, '^[A-Za-z]+[A-Za-z0-9_.-]*@leetcode\.com$');
Replies: 1 comment
-
SELECT *
FROM Users
WHERE REGEXP_LIKE(mail, '^[A-Za-z]+[A-Za-z0-9_.-]*@leetcode\.com$');
Beta Was this translation helpful? Give feedback.
All reactions
0 replies
Answer selected by
Antim-IWP
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment