Leetcode620 Not Boring Movies Posted on 2020-02-21 In 数据库 Valine: Problem: Solution:123456789SELECT *FROM cinemaWHERE id % 2 = 1 AND description != 'boring'ORDER BY rating DESC;