[LeetCode]620. Not Boring Movies

題目

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     |
+---------+-----------+--------------+-----------+
難度

Easy

Sql
# Write your MySQL query statement below
select * from cinema where id%2 and description != 'boring' order by rating desc;
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 11,133評論 0 23
  • 這是開學(xué)前寫的隨筆。 開學(xué)的日期近了,作業(yè)沒寫完,該忘記的人沒忘掉,還是碌碌無為,可能對于現(xiàn)在的我來說,只要好好地...
    不廿閱讀 359評論 0 0
  • 今天做指甲的時候聽到老板娘說的最對的一句話就是,只有自己喜歡的款式才可以保持的久。 所以為了保證那個款式是自己喜歡...
    強迫癥的幸福指南閱讀 554評論 0 50
  • 理論上說,學(xué)生是不該上補習(xí)班的。 中小學(xué)階段,只要老師能較為正確的教學(xué),學(xué)生能較為正常的完成學(xué)業(yè),他已經(jīng)合格了,他...
    yhj靈閱讀 408評論 1 1
  • 這些天,不管是否愿意,估計所有人都主動或被動的看到過有關(guān)《戰(zhàn)狼2》的訊息。尤其是它坐上了火箭一般的票房增長速度。 ...
    青禾花椒閱讀 444評論 2 0

友情鏈接更多精彩內(nèi)容