620. 有趣的电影
题解
select id, movie, description, ratingfrom cinemawhere description != 'boring' and id % 2 = 1order by rating desc;
select id, movie, description, ratingfrom cinemawhere description != 'boring' and id % 2 = 1order by rating desc;
让时间为你证明