leetcode620. Not Boring Movies

Java旺

关注

阅读 94

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)

0 0 举报