# Write your MySQL query statement below

select * from cinema
where mod(id,2)=1
and description!='boring'
order by rating DESC


或者


SELECT * FROM cinema WHERE (id % 2 = 1) AND (description <> 'boring') ORDER BY rating DESC