返回介绍

solution / 1500-1599 / 1517.Find Users With Valid E-Mails / README_EN

发布于 2024-06-17 01:03:18 字数 2860 浏览 0 评论 0 收藏 0

1517. 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 (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.
  • The domain is '@leetcode.com'.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Users table:
+---------+-----------+-------------------------+
| user_id | name    | mail          |
+---------+-----------+-------------------------+
| 1     | Winston   | winston@leetcode.com  |
| 2     | Jonathan  | jonathanisgreat     |
| 3     | Annabelle | bella-@leetcode.com   |
| 4     | Sally   | sally.come@leetcode.com |
| 5     | Marwan  | quarz#2020@leetcode.com |
| 6     | David   | david69@gmail.com     |
| 7     | Shapiro   | .shapo@leetcode.com   |
+---------+-----------+-------------------------+
Output: 
+---------+-----------+-------------------------+
| user_id | name    | mail          |
+---------+-----------+-------------------------+
| 1     | Winston   | winston@leetcode.com  |
| 3     | Annabelle | bella-@leetcode.com   |
| 4     | Sally   | sally.come@leetcode.com |
+---------+-----------+-------------------------+
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.

Solutions

Solution 1

# Write your MySQL query statement below
SELECT *
FROM Users
WHERE mail REGEXP '^[a-zA-Z][a-zA-Z0-9_.-]*@leetcode[.]com$';

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文