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