LeetCode MySQL 1607. 没有卖出的卖家
生活随笔
收集整理的這篇文章主要介紹了
LeetCode MySQL 1607. 没有卖出的卖家
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 1. 題目
- 2. 解題
1. 題目
表: Customer
+---------------+---------+ | Column Name | Type | +---------------+---------+ | customer_id | int | | customer_name | varchar | +---------------+---------+customer_id 是該表主鍵.
該表的每行包含網上商城的每一位顧客的信息.
表: Orders
+---------------+---------+ | Column Name | Type | +---------------+---------+ | order_id | int | | sale_date | date | | order_cost | int | | customer_id | int | | seller_id | int | +---------------+---------+order_id 是該表主鍵.
該表的每行包含網上商城的所有訂單的信息.
sale_date 是顧客customer_id和賣家seller_id之間交易的日期.
表: Seller
+---------------+---------+ | Column Name | Type | +---------------+---------+ | seller_id | int | | seller_name | varchar | +---------------+---------+seller_id 是該表主鍵.
該表的每行包含每一位賣家的信息.
寫一個SQL語句, 報告所有在2020年度沒有任何賣出的賣家的名字.
返回結果按照 seller_name 升序排列.
查詢結果格式如下例所示.
Customer 表:
+--------------+---------------+ | customer_id | customer_name | +--------------+---------------+ | 101 | Alice | | 102 | Bob | | 103 | Charlie | +--------------+---------------+Orders 表:
+-------------+------------+--------------+-------------+-------------+ | order_id | sale_date | order_cost | customer_id | seller_id | +-------------+------------+--------------+-------------+-------------+ | 1 | 2020-03-01 | 1500 | 101 | 1 | | 2 | 2020-05-25 | 2400 | 102 | 2 | | 3 | 2019-05-25 | 800 | 101 | 3 | | 4 | 2020-09-13 | 1000 | 103 | 2 | | 5 | 2019-02-11 | 700 | 101 | 2 | +-------------+------------+--------------+-------------+-------------+Seller 表:
+-------------+-------------+ | seller_id | seller_name | +-------------+-------------+ | 1 | Daniel | | 2 | Elizabeth | | 3 | Frank | +-------------+-------------+Result 表:
+-------------+ | seller_name | +-------------+ | Frank | +-------------+Daniel在2020年3月賣出1次.
Elizabeth在2020年賣出2次, 在2019年賣出1次.
Frank在2019年賣出1次, 在2020年沒有賣出.
來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/sellers-with-no-sales
著作權歸領扣網絡所有。商業轉載請聯系官方授權,非商業轉載請注明出處。
2. 解題
# Write your MySQL query statement below select seller_name from Seller where seller_id not in (select distinct seller_id from Orderswhere year(sale_date)=2020 ) order by seller_name950 ms 0 B MySQL
我的CSDN博客地址 https://michael.blog.csdn.net/
長按或掃碼關注我的公眾號(Michael阿明),一起加油、一起學習進步!
總結
以上是生活随笔為你收集整理的LeetCode MySQL 1607. 没有卖出的卖家的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LeetCode 2192. 有向无环图
- 下一篇: python web开发 JavaScr