Skip to content

Commit

Permalink
sovle problem Not Boring Movies
Browse files Browse the repository at this point in the history
  • Loading branch information
P-ppc committed Nov 21, 2018
1 parent f8d7996 commit 8b41587
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,4 +323,5 @@ All solutions will be accepted!
|:-|:-|:-|:-|
|596|[Big Countries](https://leetcode-cn.com/problems/big-countries/description/)|[mysql](./database/BigCountries)|Easy|
|182|[Duplicate Emails](https://leetcode-cn.com/problems/duplicate-emails/description/)|[mysql](./database/DuplicateEmails)|Easy|
|596|[Classes More Than 5 Students](https://leetcode-cn.com/problems/classes-more-than-5-students/description/)|[mysql](./ClassesMoreThan5Students)|Easy|
|596|[Classes More Than 5 Students](https://leetcode-cn.com/problems/classes-more-than-5-students/description/)|[mysql](./ClassesMoreThan5Students)|Easy|
|620|[Not Boring Movies](https://leetcode-cn.com/problems/not-boring-movies/description/)|[mysql](./database/NotBoringMovies)|Easy|
2 changes: 2 additions & 0 deletions database/NotBoringMovies/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Not Boring Movies
This problem is easy to solve
2 changes: 2 additions & 0 deletions database/NotBoringMovies/solution.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Write your MySQL query statement below
select * from cinema where description != 'boring' and id % 2 = 1 order by rating desc

0 comments on commit 8b41587

Please sign in to comment.