Skip to content

Commit d3e4dd9

Browse files
committedJul 31, 2024·
add 3172
1 parent ad4bc9d commit d3e4dd9

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
 

‎database/_3172.sql

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Write your MySQL query statement below
2+
-- my completely original solution
3+
select user_id
4+
from emails as e
5+
join texts as t on e.email_id = t.email_id
6+
where date_add(date(e.signup_date), Interval 1 Day) = date (t.action_date) and signup_action = 'Verified'
7+
order by user_id

‎paginated_contents/database/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| # | Title | Solutions | Video | Difficulty | Tag
22
|------|----------------|-----------------------------------------------------------------------------------------------------------------------|---------------|---------------|-------------
3+
| 3172 |[Second Day Verification](https://leetcode.com/problems/second-day-verification/)| [Solution](https://github.com/fishercoder1534/Leetcode/blob/master/database/_3172.sql) || Easy |
34
| 1757 |[Recyclable and Low Fat Products](https://leetcode.com/problems/recyclable-and-low-fat-products/)| [Solution](https://github.com/fishercoder1534/Leetcode/blob/master/database/_1757.sql) || Easy |
45
| 1741 |[Find Total Time Spent by Each Employee](https://leetcode.com/problems/find-total-time-spent-by-each-employee/)| [Solution](https://github.com/fishercoder1534/Leetcode/blob/master/database/_1741.sql) || Easy |
56
| 1729 |[Find Followers Count](https://leetcode.com/problems/find-followers-count/)| [Solution](https://github.com/fishercoder1534/Leetcode/blob/master/database/_1729.sql) || Easy |

0 commit comments

Comments
 (0)
Please sign in to comment.