rubus0304 님의 블로그
[데이터분석] 코드카타 91 본문
https://leetcode.com/problems/not-boring-movies/description/
91. Not Boring Movies
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
'Data Analyst > daily' 카테고리의 다른 글
[데이터분석] 코드카타 93 (0) | 2024.10.31 |
---|---|
[데이터분석] 코드카타 92 (0) | 2024.10.30 |
[데이터 분석] 코드카타 90 (0) | 2024.10.28 |
[QCC 1회차] (2) | 2024.10.25 |
[데이터 분석] 코드카타 89 (0) | 2024.10.25 |