sql连续登录

1、sql建表语句

sql 复制代码
DROP TABLE IF EXISTS `app_login_record`;
CREATE TABLE `app_login_record`  (
  `user_id` int(0) NULL DEFAULT NULL,
  `enter_time` datetime(0) NULL DEFAULT NULL,
  `leave_time` datetime(0) NULL DEFAULT NULL
);


INSERT INTO `app_login_record` VALUES (789012, '2023-05-03 17:52:00', '2023-05-03 17:55:00');
INSERT INTO `app_login_record` VALUES (789013, '2023-05-04 12:02:00', '2023-05-04 12:03:00');
INSERT INTO `app_login_record` VALUES (789012, '2023-05-02 13:36:00', '2023-05-02 13:45:00');
INSERT INTO `app_login_record` VALUES (789001, '2023-05-08 14:25:00', '2023-05-08 14:32:00');
INSERT INTO `app_login_record` VALUES (789003, '2023-05-10 10:46:00', '2023-05-10 10:47:00');
INSERT INTO `app_login_record` VALUES (789001, '2023-05-07 08:12:00', '2023-05-07 08:14:00');
INSERT INTO `app_login_record` VALUES (789012, '2023-05-04 16:32:00', '2023-05-04 16:35:00');
INSERT INTO `app_login_record` VALUES (789012, '2023-05-08 11:58:00', '2023-05-08 12:01:00');
INSERT INTO `app_login_record` VALUES (789001, '2023-05-09 19:35:00', '2023-05-09 19:38:00');
INSERT INTO `app_login_record` VALUES (789003, '2023-05-11 20:35:00', '2023-05-11 20:38:00');
INSERT INTO `app_login_record` VALUES (789009, '2023-05-01 22:58:00', '2023-05-01 23:03:00');

2、请找出连续3天登录小程序且浏览时长大于2分钟的用户

第1种方法(没考虑,一天登录2次的情况))、解:

sql 复制代码
select distinct user_id 
from(
SELECT * ,
               CASE
               WHEN DATE_SUB(str_to_date(enter_time,'%Y-%m-%d'),INTERVAL 1 DAY) = str_to_date(@old,'%Y-%m-%d')  and @u_id=user_id and @old:=enter_time 
					THEN @size:=@size+1
					
               WHEN @old:=enter_time 
					THEN @size:=1 
               END
 AS tt, @u_id:=user_id
FROM (select * from app_login_record 
where      TIMESTAMPDIFF(MINUTE, enter_time,  leave_time)  >2
group BY user_id,enter_time) t
ORDER BY user_id,enter_time) tb
where tb.tt = 3

3、第2种方法(没考虑,一天登录2次的情况)、解:

sql 复制代码
select DISTINCT tc.user_id from(
select *,
 if(ta.tg=1 and ta.t_user_id=1,@size:=@size+1,@size:=1) as t_num
from(
select *,lead(left(enter_time,10), 1) over () = 
     DATE_ADD(left(enter_time,10),INTERVAL 1 day) as tg ,
	  lead(user_id, 1) over () = user_id  as t_user_id
	  from app_login_record t , (SELECT @size:=1)r
		where TIMESTAMPDIFF(MINUTE, enter_time,  leave_time)  > 2
ORDER BY t.user_id,t.enter_time) ta)tc
where tc.t_num = 3


-- 怎么定义多个变量,如下
-- (SELECT @old:=null,@size:=1,@name:=null)r

4、第3种方法(这里考虑了,一天登录两次的情况,需要去重)、解:

sql 复制代码
select DISTINCT tw.user_id from(   
select *,
 if(tc.tg=1 and tc.t_user_id=1,@size:=@size+1,@size:=1) as t_num
from (
	select user_id,
	  lead(enter_time_s, 1) over () = 
    DATE_ADD(enter_time_s,INTERVAL 1 day) as tg ,
	  lead(user_id, 1) over () = user_id  as t_user_id
	from( 
    select DISTINCT user_id as user_id , left(enter_time,10) as enter_time_s
 	  from app_login_record t , (SELECT @size:=1)r
		where TIMESTAMPDIFF(MINUTE, enter_time,  leave_time)  > 2
    ORDER BY  t.user_id,enter_time_s)ta)tc)tw
	where tw.t_num = 3
		
		
		
-- 		语法解释1:
-- 		别名不能直接做where和group by后的查询条件,但order by 可以用别名
--    原因是where在select之前执行,所以别名不能直接做where后的查询条件
--    group by 同理。
--    但order by是最后执行,所以可以用别名。


--   语法解释2
--   怎么定义多个变量,如下
--   (SELECT @old:=null,@size:=1,@name:=null)r

5、

6、

7、

8、

9、

10、

11、

相关推荐
RainbowSea6 小时前
12. LangChain4j + 向量数据库操作详细说明
java·langchain·ai编程
RainbowSea7 小时前
11. LangChain4j + Tools(Function Calling)的使用详细说明
java·langchain·ai编程
考虑考虑10 小时前
Jpa使用union all
java·spring boot·后端
用户37215742613511 小时前
Java 实现 Excel 与 TXT 文本高效互转
java
RestCloud11 小时前
SQL Server到Hive:批处理ETL性能提升30%的实战经验
数据库·api
RestCloud11 小时前
为什么说零代码 ETL 是未来趋势?
数据库·api
浮游本尊12 小时前
Java学习第22天 - 云原生与容器化
java
ClouGence14 小时前
CloudCanal + Paimon + SelectDB 从 0 到 1 构建实时湖仓
数据库
渣哥14 小时前
原来 Java 里线程安全集合有这么多种
java
间彧14 小时前
Spring Boot集成Spring Security完整指南
java