leetcode

Leetcode submissions
git clone git://git.laack.co/leetcode.git
Log | Files | Refs | README

not-boring-movies.sql (204B)


      1 --Return all movies that have an odd number as the id
      2 --and do not have a description of boring
      3 SELECT *
      4 FROM Cinema
      5 WHERE Cinema.id % 2 = 1 and Cinema.description != 'boring'
      6 ORDER BY Cinema.rating DESC