Site: LeetCode
Difficulty per Site: Easy
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. [Full Description]
-- Submitted Solution
SELECT
*
FROM Cinema
WHERE id % 2 <> 0
AND description != 'boring'
ORDER BY rating DESC
;
-- LeetCode Solution
-- TODO
TODO
TBD