MySQL基础练习题48-连续出现的数字

目录

题目

准备数据

分析数据


题目

找出所有至少连续出现三次的数字。

准备数据

sql 复制代码
## 创建库
create database db;
use db;

## 创建表
Create table If Not Exists Logs (id int, num int)

## 向表中插入数据
Truncate table Logs
insert into Logs (id, num) values ('1', '1')
insert into Logs (id, num) values ('2', '1')
insert into Logs (id, num) values ('3', '1')
insert into Logs (id, num) values ('4', '2')
insert into Logs (id, num) values ('5', '1')
insert into Logs (id, num) values ('6', '2')
insert into Logs (id, num) values ('7', '2')

分析数据

复制代码
1 是唯一连续出现至少三次的数字。

遇见连续性问题,需要两列差值相同的,最后进行相减,相同的即为连续。

第一步:根据num分组,id排序进行排名

sql 复制代码
select *,
       row_number() over (partition by num order by id) rn
from logs;

第二步:算差值,将id列减去rn列的值

sql 复制代码
with t1 as (
    select *,
           row_number() over (partition by num order by id) rn
    from logs
) select *,
         (id - cast(rn as signed)) as diff
from t1;

注意:rn列需要强制性转化

sql 复制代码
with t2 as (
    with t1 as (
        select *,
               row_number() over (partition by num order by id) rn
        from logs
    ) select *,
             (id - cast(rn as signed)) as diff
    from t1
) select
    distinct t2.num as ConsecutiveNums
from t2
group by t2.num,t2.diff
having count(t2.diff) >= 3;
相关推荐
JioJio~z18 分钟前
MYSQL之创建数据库和表
数据库·mysql
RainbowSea1 小时前
6. MySQL 索引的数据结构(详细说明)
数据库·sql·mysql
jk_1012 小时前
MATLAB中strip函数用法
java·服务器·数据库
XiYang-DING2 小时前
【数据库系统概论】第七章 数据库设计
数据库
尘鹄2 小时前
一文讲懂Go语言如何使用配置文件连接数据库
开发语言·数据库·后端·golang
窜天猴牛逼2 小时前
IO多路复用(epoll)/数据库(sqlite)
数据库
老哥不老2 小时前
结合 Pandas 使用 SQLite3 实战
数据库·sqlite·pandas
eddie_k22 小时前
MySQL主从架构配合ShardingJdbc实现读写分离
数据库·mysql·架构
Java资深爱好者3 小时前
Android中的AsyncTask。
android
tangweiguo030519873 小时前
android 支持自定义布局、线程安全、避免内存泄漏的 Toast 工具类
android·toast