Skip to content

620. Not Boring Movies

1
2
3
4
5
6
SELECT *
FROM Cinema
WHERE
  MOD(id, 2) = 1
  AND description != 'boring'
ORDER BY rating DESC;