1495. Friendly Movies Streamed Last Month
https://leetcode.com/problems/friendly-movies-streamed-last-month
Description
Table: TVProgram
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| program\_date | date |
| content\_id | int |
| channel | varchar |
+---------------+---------+
(program\_date, content\_id) is the primary key for this table.
This table contains information of the programs on the TV.
content\_id is the id of the program in some channel on the TV.Table: Content
+------------------+---------+
| Column Name | Type |
+------------------+---------+
| content\_id | varchar |
| title | varchar |
| Kids\_content | enum |
| content\_type | varchar |
+------------------+---------+
content\_id is the primary key for this table.
Kids\_content is an enum that takes one of the values ('Y', 'N') where:
'Y' means is content for kids otherwise 'N' is not content for kids.
content\_type is the category of the content as movies, series, etc.Write an SQL query to report the distinct titles of the kid-friendly movies streamed in June 2020.
Return the result table in any order.
The query result format is in the following example.
ac
Last updated
Was this helpful?