Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ff8e4ce

Browse files
add 1495
1 parent 8cba8f2 commit ff8e4ce

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,7 @@ _If you like this project, please leave me a star._ ★
981981

982982
| # | Title | Solutions | Video | Difficulty | Tag
983983
|-----|----------------|---------------|---------------|---------------|-------------
984+
|1495|[Friendly Movies Streamed Last Month](https://leetcode.com/problems/friendly-movies-streamed-last-month/)|[Solution](../master/database/_1495.sql) || Easy |
984985
|1407|[Top Travellers](https://leetcode.com/problems/top-travellers/)|[Solution](../master/database/_1407.sql) || Easy |
985986
|1384|[Total Sales Amount by Year](https://leetcode.com/problems/total-sales-amount-by-year/)|[Solution](../master/database/_1384.sql) || Hard |
986987
|1378|[Replace Employee ID With The Unique Identifier](https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/)|[Solution](../master/database/_1378.sql) || Easy |

database/_1495.sql

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
--# Write your MySQL query statement below
2+
select title from Content where Kids_content = 'Y' and content_id in (
3+
select content_id from TVProgram where program_date between '2020-06-01 00:00' and '2020-06-30 23:59'
4+
) and content_type = 'Movies'

0 commit comments

Comments
 (0)