# 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
leetcode620. Not Boring Movies
阅读 91
2022-08-05
# 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
相关推荐
精彩评论(0)