#620 Not Boring Movies

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

Last updated

Was this helpful?