1 Star 0 Fork 0

逸扬/leetcode-hub-mysql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lc-0603.test 743 Bytes
一键复制 编辑 原始数据 按行查看 历史
# $603. 连续空余座位
# https://leetcode-cn.com/problems/consecutive-available-seats/
# SQL架构
Create table If Not Exists Cinema (seat_id int primary key auto_increment, free bool);
Truncate table Cinema;
insert into Cinema (seat_id, free) values ('1', '1');
insert into Cinema (seat_id, free) values ('2', '0');
insert into Cinema (seat_id, free) values ('3', '1');
insert into Cinema (seat_id, free) values ('4', '1');
insert into Cinema (seat_id, free) values ('5', '1');
# Write your MySQL query statement below
select
distinct c1.seat_id as seat_id
from
Cinema c1
join Cinema c2 on abs(c1.seat_id - c2.seat_id) = 1
and c1.free = true
and c2.free = true
order by
c1.seat_id;
# clean-up
drop table Cinema;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gdut_yy/leetcode-hub-mysql.git
git@gitee.com:gdut_yy/leetcode-hub-mysql.git
gdut_yy
leetcode-hub-mysql
leetcode-hub-mysql
master

搜索帮助