620.有趣的电影

解析

select id, movie, description, rating from cinema
where id%2=1 && description != "boring"
order by rating DESC

通过select 查询

根据条件 where id%2=1(单数) && description != "boring"

在通过排序 order by rating DESC 降序

猜你喜欢

转载自blog.csdn.net/SneakyRogue/article/details/83177830