Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 1.01 KB

179_friendly_movies_streamed_last_month.md

File metadata and controls

56 lines (42 loc) · 1.01 KB

SQL Everyday #179

Friendly Movies Streamed Last Month

Site: LeetCode
Difficulty per Site: Easy

Problem

Write a solution to report the distinct titles of the kid-friendly movies streamed in June 2020.

Return the result table in any order. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT
    DISTINCT c.title
FROM TVProgram AS t
JOIN Content AS c ON t.content_id = c.content_id
WHERE c.Kids_content = 'Y'
    AND c.content_type = 'Movies'
    AND DATE_FORMAT(t.program_date,'%Y-%m') = '2020-06'
;

Site Solution

-- LeetCode Solution 
SELECT 
    DISTINCT c.title
FROM 
    Content c
JOIN 
    TVProgram p
ON 
    c.content_id = p.content_id
WHERE 
    c.Kids_content = 'Y'
AND 
    c.content_type = 'Movies'
AND MONTH(p.program_date) = 6 AND YEAR(p.program_date) = 2020

Notes

TBD

NB

TBD

Go to Index
Go to Overview