https://leetcode.com/problems/not-boring-movies/description/

不管题目简不简单,现在先熟悉语法。

直接用where语句判断即可,判断奇偶可以用 %

# Write your MySQL query statement below
select *
from cinema
where id % = and description != 'boring'
order by rating desc;

还有用 & 也行

# Write your MySQL query statement below
select *
from cinema
where ((id & ) = ) and description != 'boring'
order by rating desc;
05-28 08:51