1517. Find Users With Valid E-Mails
https://leetcode.com/problems/find-users-with-valid-e-mails
Description
Table: Users
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| user\_id | int |
| name | varchar |
| mail | varchar |
+---------------+---------+
user\_id is the primary key for this table.
This table contains information of the users signed up in a website. Some e-mails are invalid.Write an SQL query to find the users who have valid emails.
A valid e-mail has a prefix name and a domain where:
The prefix name is a string that may contain letters (upper or lower case), digits, underscore
'_', period'.'and/or dash'-'. The prefix name must start with a letter.The domain is
'@leetcode.com'.
Return the result table in any order.
The query result format is in the following example.
ac
Last updated
Was this helpful?