Skip to content

Commit d83c7e0

Browse files
add 1607
1 parent c4e96a5 commit d83c7e0

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1044,6 +1044,7 @@ _If you like this project, please leave me a star._ ★
10441044

10451045
| # | Title | Solutions | Video | Difficulty | Tag
10461046
|-----|----------------|---------------|---------------|---------------|-------------
1047+
|1607|[Sellers With No Sales](https://leetcode.com/problems/sellers-with-no-sales/)|[Solution](../master/database/_1607.sql) || Easy |
10471048
|1543|[Fix Product Name Format](https://leetcode.com/problems/fix-product-name-format/)|[Solution](../master/database/_1543.sql) || Easy |
10481049
|1517|[Find Users With Valid E-Mails](https://leetcode.com/problems/find-users-with-valid-e-mails/)|[Solution](../master/database/_1517.sql) || Easy |
10491050
|1495|[Friendly Movies Streamed Last Month](https://leetcode.com/problems/friendly-movies-streamed-last-month/)|[Solution](../master/database/_1495.sql) || Easy |

database/_1607.sql

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
--# Write your MySQL query statement below
2+
select seller_name from Seller as SELLER_NAME where seller_id not in (
3+
select distinct(seller_id) from Orders where sale_date between '2020-01-01' and '2020-12-31'
4+
) order by seller_name;

0 commit comments

Comments
 (0)