Leetcode PostgreSQL Product Sales Analysis I

업데이트:

문제

Link

코드

-- Write your PostgreSQL query statement below
SELECT Product.product_name, Sales.year, Sales.price
FROM Sales
JOIN Product ON Product.product_id = Sales.product_id

결과

Link

설명

  1. Sales 테이블의 product_id를 이용하여 Product의 이름을 가져와 product_name, year, price 순으로 필드를 보여주는 문제이다.

댓글남기기