Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 193 Bytes

Not Boring Movies.md

File metadata and controls

12 lines (9 loc) · 193 Bytes

MySQL Solution

SELECT * FROM cinema
WHERE id % 2 = 1 AND
      description != 'boring'
ORDER BY rating DESC

Links