Table: Users
Write a solution to find all the valid email addresses. A valid email address meets the following criteria:
Return the result table ordered by user_id in ascending order.
Examples
Example 1
+-----------------+---------+
| Column Name | Type |
+-----------------+---------+
| user_id | int |
| email | varchar |
+-----------------+---------+
(user_id) is the unique key for this table.
Each row contains a user's unique ID and email address.
Table: Users
Write a solution to find all the valid email addresses. A valid email address meets the following criteria:
Return the result table ordered by user_id in ascending order.
Examples
Example 1
+-----------------+---------+
| Column Name | Type |
+-----------------+---------+
| user_id | int |
| email | varchar |
+-----------------+---------+
(user_id) is the unique key for this table.
Each row contains a user's unique ID and email address.