• Skip to primary navigation
  • Skip to content
  • Skip to footer
Thomas Ngo's Developer Journal Thomas Ngo's Developer Journal
  • Home
  • Journal
  • Tags
  • About
    Thomas Ngo

    Thomas Ngo

    Software Engineer

    • Stanton, California
    • Email
    • GitHub
    • Resume

    SQL problem - List the Products Ordered in a Period

    March 3, 2024 less than 1 minute read

    Page Navigation

    • Problem
    • Query

    Problem

    problem-1327

    Query

    SELECT
        p.product_name,
        SUM(o.unit) as unit
    FROM
        Products p,
        Orders o
    WHERE
        p.product_id = o.product_id
        AND YEAR(o.order_date) = 2020
        AND MONTH(o.order_date) = 2
    GROUP BY
        product_name
    HAVING
        SUM(o.unit) >= 100
    

    Tags: SQL

    Updated: March 3, 2024

    Share on

    Twitter Facebook LinkedIn
    Previous Next

    You may also enjoy

    Problem of The Day: Maximize the Number of Target Nodes After Connecting Trees II

    May 28, 2025 1 minute read

    Problem Statement

    Problem of The Day: Set Matrix Zeroes

    May 27, 2025 1 minute read

    Problem Statement

    Problem of The Day: Set Matrix Zeroes

    May 20, 2025 1 minute read

    Problem Statement

    Problem of The Day: Simplify Path

    May 19, 2025 less than 1 minute read

    Problem Statement

    • Follow:
    • GitHub
    • LinkedIn
    © 2025 Thomas Ngo.