leet code sql 620
문제
- 영화 관련한 별점 테이블이 존재
- 지루하지 않고 홀수인 id에 대해 평점 높은순으로 출력
문제 접근
- 지루하지 않은 값에 대해 예외처리
- 홀수인 경우는 mod 함수 혹은 나머지 처리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
select
id,
movie,
description,
rating
from Cinema
where id % 2 = 1
and description <> "boring"
order by rating desc
select
id,
movie,
description,
rating
from cinema
where mod(id,2)=1 and description!='boring'
order by rating desc;