美文网首页
620. Not Boring Movies

620. Not Boring Movies

作者: 无敌的肉包 | 来源:发表于2018-06-28 10:53 被阅读0次

X city opened a new cinema, many people would like to go to this cinema. The cinema also gives out a poster indicating the movies’ ratings and descriptions.
Please write a SQL query to output movies with an odd numbered ID and a description that is not 'boring'. Order the result by rating.

For example, table 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     |
+---------+-----------+--------------+-----------+

For the example above, the output should be:

+---------+-----------+--------------+-----------+
|   id    | movie     |  description |  rating   |
+---------+-----------+--------------+-----------+
|   5     | House card|   Interesting|   9.1     |
|   1     | War       |   great 3D   |   8.9     |
+---------+-----------+--------------+-----------+

Solution:

SELECT *
FROM cinema
WHERE id%2 =1 AND description not like "boring"
ORDER BY rating DESC

相关文章

  • LeetCode 620. Not Boring Movies

    LeetCode 620. Not Boring Movies 题目 X city opened a new ...

  • 620. Not Boring Movies

    X city opened a new cinema, many people would like to go ...

  • 620. Not Boring Movies

    题目链接: 620. Not Boring Movies 解析: 本题比较简单,只是限制条件多了一些,简单梳理一下...

  • [LeetCode]620. Not Boring Movies

    题目 X city opened a new cinema, many people would like to ...

  • 每日Leetcode—SQL(7)

    620. 有趣的电影 作为该电影院的信息部主管,您需要编写一个 SQL查询,找出所有影片描述为非 boring (...

  • 热爱英文 Learning English_How to get

    English is NOT boring. I repeat, it is NOT boring and SHO...

  • 2018-12-16

    I think learning is boring and boring, and it does not br...

  • movies

    金福南杀人事件始末 辩护人 阳光姐妹淘 新世界 我的野蛮女友 假如爱有天意 7号房的礼物 我脑中的橡...

  • Movies

    《萤火之森》 一如萤火,一触就消散成风烟在润湿的空气里,当我越听到周遭人的劝谏,我越是小心翼翼的与你相处,只怕一不...

  • MOVIES

    登堂入室 暗芝居(S1-3) 狼狈 林中女妖 请慎重食用冰淇淋 致命礼物 阁楼之花 九死 黑暗面 免费安装 终极人...

网友评论

      本文标题:620. Not Boring Movies

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