[코드카타] SQL 30 Not Boring Movies

Data_Student·2024년 11월 13일
0

코드카타

목록 보기
37/57

[코드카타] SQL 30 Not Boring Movies

30. Not Boring Movies
https://leetcode.com/problems/not-boring-movies/description/

Write a solution to report the movies with an odd-numbered ID and 
a description that is not "boring".
Return the result table ordered by rating in descending order.
select *
from cinema
where (mod(id, 2)=1) and description != 'boring'
order by rating desc
홀수 짝수 구하는 방법 찾기!
SQL의 경우는 mod 함수 사용 가능
mod 함수 : 나머지를 구하는 함수
mod(필드명, 2) = 1 일 경우 홀수
mod(필드명, 2) = 2 일 경우 짝수

0개의 댓글