728x90
https://leetcode.com/problems/not-boring-movies/
SELECT * FROM Cinema
WHERE
(MOD(id, 2) = 1)
AND
(description != "boring")
ORDER BY rating desc;
728x90
'IT > 코딩테스트' 카테고리의 다른 글
[Leetcode] 922. Sort Array By Parity II (0) | 2023.08.26 |
---|---|
[Leetcode] 905. Sort Array By Parity (0) | 2023.08.26 |
[Leetcode] 26. Remove Duplicates from Sorted Array (0) | 2023.08.24 |
[Leetcode] 1068. Product Sales Analysis I (0) | 2023.08.24 |
[Leetcode] 283. Move Zeroes (0) | 2023.08.23 |