表: Products

    1. +------------------+---------+
    2. | Column Name | Type |
    3. +------------------+---------+
    4. | product_id | int |
    5. | product_name | varchar |
    6. | product_category | varchar |
    7. +------------------+---------+
    8. product_id 是该表主键。
    9. 该表包含该公司产品的数据。

    表: Orders

    1. +---------------+---------+
    2. | Column Name | Type |
    3. +---------------+---------+
    4. | product_id | int |
    5. | order_date | date |
    6. | unit | int |
    7. +---------------+---------+
    8. 该表无主键,可能包含重复行。
    9. product_id 是表单 Products 的外键。
    10. unit 是在日期 order_date 内下单产品的数目。

    写一个 SQL 语句,要求获取在 2020 年 2 月份下单的数量不少于 100 的产品的名字和数目。

    返回结果表单的顺序无要求。

    查询结果的格式如下:

    1. Products 表:
    2. +-------------+-----------------------+------------------+
    3. | product_id | product_name | product_category |
    4. +-------------+-----------------------+------------------+
    5. | 1 | Leetcode Solutions | Book |
    6. | 2 | Jewels of Stringology | Book |
    7. | 3 | HP | Laptop |
    8. | 4 | Lenovo | Laptop |
    9. | 5 | Leetcode Kit | T-shirt |
    10. +-------------+-----------------------+------------------+
    11. Orders 表:
    12. +--------------+--------------+----------+
    13. | product_id | order_date | unit |
    14. +--------------+--------------+----------+
    15. | 1 | 2020-02-05 | 60 |
    16. | 1 | 2020-02-10 | 70 |
    17. | 2 | 2020-01-18 | 30 |
    18. | 2 | 2020-02-11 | 80 |
    19. | 3 | 2020-02-17 | 2 |
    20. | 3 | 2020-02-24 | 3 |
    21. | 4 | 2020-03-01 | 20 |
    22. | 4 | 2020-03-04 | 30 |
    23. | 4 | 2020-03-04 | 60 |
    24. | 5 | 2020-02-25 | 50 |
    25. | 5 | 2020-02-27 | 50 |
    26. | 5 | 2020-03-01 | 50 |
    27. +--------------+--------------+----------+
    28. Result 表:
    29. +--------------------+---------+
    30. | product_name | unit |
    31. +--------------------+---------+
    32. | Leetcode Solutions | 130 |
    33. | Leetcode Kit | 100 |
    34. +--------------------+---------+
    35. 2020 2 月份下单 product_id = 1 的产品的数目总和为 (60 + 70) = 130
    36. 2020 2 月份下单 product_id = 2 的产品的数目总和为 80
    37. 2020 2 月份下单 product_id = 3 的产品的数目总和为 (2 + 3) = 5
    38. 2020 2 月份 product_id = 4 的产品并没有下单。
    39. 2020 2 月份下单 product_id = 5 的产品的数目总和为 (50 + 50) = 100