博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode - 620. Not Boring Movies
阅读量:6569 次
发布时间:2019-06-24

本文共 1243 字,大约阅读时间需要 4 分钟。

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     |+---------+-----------+--------------+-----------+
# Write your MySQL query statement belowselect * from cinema where description != 'boring' and (id % 2) = 1 group by rating desc

 

转载地址:http://lipjo.baihongyu.com/

你可能感兴趣的文章
vue-router 2 跳转失败原因
查看>>
Numerical Geometry of Image
查看>>
RocketMQ源码 — 十一、 RocketMQ事务消息
查看>>
项目中基于Rest的Wcf服务发布以及iBatisNet框架的使用(下)
查看>>
springboot整合ElasticSearch出现的问题
查看>>
线性代数基础
查看>>
Java中的访问权限
查看>>
redis事务和脚本
查看>>
[zz]linux elf loader漏洞
查看>>
练笔--字符串,向量和数组2
查看>>
运维数据库平台~inception审核规则详解
查看>>
sap 给集团分配一个逻辑系统
查看>>
Nginx配置中文域名
查看>>
IOS任务
查看>>
在eclipse里的 flex 没有可视化的编辑
查看>>
python 列出出当前目录及所有子目录下的文件
查看>>
RabbitMQ错误检查
查看>>
OSI模型
查看>>
对于数据库连接池的一些思考和MyBatis的集成与使用
查看>>
[SDOI2016]征途
查看>>