美文网首页MySQL
(LeetCode620:有趣的电影)

(LeetCode620:有趣的电影)

作者: lconcise | 来源:发表于2018-10-16 22:47 被阅读3次

    Solution:
    某城市开了一家新的电影院,吸引了很多人过来看电影。该电影院特别注意用户体验,专门有个 LED显示板做电影推荐,上面公布着影评和相关电影描述。
    作为该电影院的信息部主管,您需要编写一个 SQL查询,找出所有影片描述为非 boring (不无聊) 的并且 id 为奇数 的影片,结果请按等级 rating 排列。

    例如,下表 cinema:

    +---------+-----------+--------------+-----------+
    |   id    | movie     |  description |  rating   |
    +---------+-----------+--------------+-----------+
    |   1     | War       |   great 3D   |   8.9     |
    |   2     | Science   |   fiction    |   8.5     |
    |   3     | irish     |   boring     |   6.2     |
    |   4     | Ice song  |   Fantacy    |   8.6     |
    |   5     | House card|   Interesting|   9.1     |
    +---------+-----------+--------------+-----------+
    
    +---------+-----------+--------------+-----------+
    |   id    | movie     |  description |  rating   |
    +---------+-----------+--------------+-----------+
    |   5     | House card|   Interesting|   9.1     |
    |   1     | War       |   great 3D   |   8.9     |
    +---------+-----------+--------------+-----------+
    

    Solution:

    select * from cinema where description !='boring' and mod(id,2)=1 order by rating desc;
    
    select * from cinema where description !='boring' and id%2=1 order by rating desc;
    

    两条sql 可是实现相同的结果。

    友情提示:
    mysql != 和 <> 的查询结果不包含 null 的字段,所以设置属性最好要求属性 not null。

    相关文章

      网友评论

        本文标题:(LeetCode620:有趣的电影)

        本文链接:https://www.haomeiwen.com/subject/xmcyaftx.html