+---------------+---------+
|Column Name |Type|+---------------+---------+
| program_date | date || content_id | int || channel | varchar |+---------------+---------+
(program_date, content_id) is the primarykey (combination of columns withuniquevalues) for this table.
This tablecontains information of the programs on the TV.
content_id is the id of the program insome channel on the TV.
Table: Content
1
2
3
4
5
6
7
8
9
10
11
12
+------------------+---------+
|Column Name |Type|+------------------+---------+
| content_id | varchar || title | varchar || Kids_content | enum || content_type | varchar |+------------------+---------+
content_id is the primarykey (columnwithuniquevalues) for this table.
Kids_content is an ENUM (category) of types ('Y', 'N') where:
'Y' means is content for kids otherwise 'N'isnot content for kids.
content_type is the category of the content as movies, series, etc.
Write a solution to report the distinct titles of the kid-friendly movies streamed in June 2020.
Input:
TVProgram table:+--------------------+--------------+-------------+| program_date | content_id | channel |+--------------------+--------------+-------------+|2020-06-1008:00|1| LC-Channel ||2020-05-1112:00|2| LC-Channel ||2020-05-1212:00|3| LC-Channel ||2020-05-1314:00|4| Disney Ch ||2020-06-1814:00|4| Disney Ch ||2020-07-1516:00|5| Disney Ch |+--------------------+--------------+-------------+Content table:+------------+----------------+---------------+---------------+| content_id | title | Kids_content | content_type |+------------+----------------+---------------+---------------+|1| Leetcode Movie | N | Movies ||2| Alg.for Kids | Y | Series ||3| Database Sols | N | Series ||4| Aladdin | Y | Movies ||5| Cinderella | Y | Movies |+------------+----------------+---------------+---------------+Output:
+--------------+| title |+--------------+| Aladdin |+--------------+Explanation:
"Leetcode Movie"is not a content for kids."Alg. for Kids"is not a movie."Database Sols"is not a movie
"Alladin"is a movie, content for kids and was streamed in June 2020."Cinderella" was not streamed in June 2020.
SELECT title FROM Content
WHERE content_type ='Movies'AND Kids_content ='Y'AND content_id IN (
SELECT content_id FROM TVProgram
WHEREMONTH(program_date) ='6');