620. 有趣的电影 - 力扣(LeetCode) 取模函数mod(x, y)返回x % y的结果
select
id,
movie,
description,
rating
from cinema
where
mod(id, 2) = 1
and
description != 'boring'
order by rating desc;
620. 有趣的电影 - 力扣(LeetCode) 取模函数mod(x, y)返回x % y的结果
select
id,
movie,
description,
rating
from cinema
where
mod(id, 2) = 1
and
description != 'boring'
order by rating desc;