본문 바로가기
Develop/Database

[Leetcode] 620. Not Boring Movies (MySQL) 문제 및 풀이

by 초코칩프라푸치노 2021. 12. 23.

문제) Leetcode - SQL - Not Boring Movies

https://leetcode.com/problems/not-boring-movies/

 

Not Boring Movies - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

 

풀이)

select *
from Cinema
where mod(id,2) = 1 and description != "boring"
order by rating desc
반응형

댓글