+---------------+---------+
|Column Name |Type|+---------------+---------+
| user_id | int || name | varchar || mail | varchar |+---------------+---------+
user_id is the primary key (column with unique values) for this table.
This table contains information of the users signed up in a website. Some e-mails are invalid.
Write a solution 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.
Explanation:
The mail of user 2 does not have a domain.
The mail of user 5 has the # sign which is not allowed.
The mail of user 6 does not have the leetcode domain.
The mail of user 7 starts with a period.
`'^[A-Za-z]+[A-Za-z0-9\_\.\-]*@leetcode.com'`
1. `^` means the beginning of the string
2. `[]` means character set. `[A-Z]` means any upper case chars. In other words, the short dash in the character set means range.
3. After the first and the second character set, there is a notation: `+` or `*` - `+` means at least one of the character from the preceding charset, and `*` means 0 or more.
4. `\` inside the charset mean skipping. In other words, `\`. means we want the dot as it is. Remember, for example, - means range in the character set. So what if we would like to find - itself as a character? use `\`-.
5. Everything else, like `@leetcode.com` refers to exact match.
##### SQL
1
2
select*from Users
where regexp_like(mail, '^[A-Za-z]+[A-Za-z0-9\_\.\-]*@leetcode.com')