码迷,mamicode.com
首页 > 数据库 > 详细

[LeetCode]603. 连续空余座位(Mysql、自连接)

时间:2020-06-13 01:01:45      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:HERE   应该   sele   code   tin   查询   排序   mysq   代码   

题目

几个朋友来到电影院的售票处,准备预约连续空余座位。

你能利用表?cinema?,帮他们写一个查询语句,获取所有空余座位,并将它们按照 seat_id 排序后返回吗?

| seat_id | free |
|---------|------|
| 1       | 1    |
| 2       | 0    |
| 3       | 1    |
| 4       | 1    |
| 5       | 1    |
?

对于如上样例,你的查询语句应该返回如下结果。

?

| seat_id |
|---------|
| 3       |
| 4       |
| 5       |

题解

使用自连接。

代码

select distinct(c1.seat_id)
from cinema c1 
join cinema c2
on abs(c1.seat_id-c2.seat_id)=1
where c1.free=1 and c2.free =1
order by c1.seat_id 

[LeetCode]603. 连续空余座位(Mysql、自连接)

标签:HERE   应该   sele   code   tin   查询   排序   mysq   代码   

原文地址:https://www.cnblogs.com/coding-gaga/p/13111016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!