zoukankan      html  css  js  c++  java
  • 【lc-database】620 有趣的电影

    某城市开了一家新的电影院,吸引了很多人过来看电影。该电影院特别注意用户体验,专门有个 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 |

    ±--------±----------±-------------±----------+

    1.where

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

    取余是用函数mod(number1,number2);其返回的是其余数值

    mod(id,2) = 1;

  • 相关阅读:
    WSL2
    坐标系变换
    Python websocket
    PAJ7620 IIC 通信
    Python中assert的使用
    Python中循环的使用
    Linux 生成指定大小文件
    SVN不显示log 显示1970年问题
    阿里云 CS实例 开机自运行脚本文件
    生成UDS安全算法DLL文件
  • 原文地址:https://www.cnblogs.com/qxlxi/p/12860760.html
Copyright © 2011-2022 走看看