DDSA
Advertisement

620. Not Boring Movies

620.sql
MySQL
/* Write your T-SQL query statement below */
select * from Cinema 
where id % 2 = 1
and description != 'boring'
order by rating desc
Advertisement
Was this solution helpful?