我的编程空间,编程开发者的网络收藏夹
学习永远不晚

mysql中怎么统计留存率

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

mysql中怎么统计留存率

这期内容当中小编将会给大家带来有关mysql中怎么统计留存率,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

Sql代码
  begin
  declare i int;
  declare numareaId int(10);
  declare currentareaId int(10);
  SELECT COUNT(areaId),MIN(areaId) INTO @a,@b FROM option_area_info;
  SET numareaId=@a;
  SET currentareaId=@b;
  loop1:WHILE numareaId>0 DO
  SET @AID = currentareaId;
  SET i=1;
  while i<8 do
  if exists(select * from statistics_player_l where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day) and areaId=@AID) then
  update statistics_player_l set oneDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 1 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 2 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  update statistics_player_l set twoDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 2 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 3 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  update statistics_player_l set threeDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 3 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 4 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  update statistics_player_l set fourDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 4 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 5 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  update statistics_player_l set fiveDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 5 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 6 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  update statistics_player_l set sixDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 6 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 7 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  update statistics_player_l set sevenDayPlayer=(select ((select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day) and loginTime>=date_add(date_sub(curdate(),interval i day),interval 7 day) and loginTime<date_add(date_sub(curdate(),interval i day),interval 8 day) and areaId=@AID)/(select count(distinct playerId) from log_login where registerTime=date_sub(curdate(),interval i day)))*100) where createTime>=date_sub(curdate(),interval i day) and createTime<date_sub(curdate(),interval i-1 day);
  end if;
  SET i=i+1;
  end while;
  SET numareaId=numareaId-1;
  SET currentareaId=currentareaId+1;
  END WHILE loop1;
  end

上述就是小编为大家分享的mysql中怎么统计留存率了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

mysql中怎么统计留存率

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Mysql计算n日留存率的实现

本文主要介绍了Mysql计算n日留存率的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-01-12

小程序留存率怎么提升

本文小编为大家详细介绍“小程序留存率怎么提升”,内容详细,步骤清晰,细节处理妥当,希望这篇“小程序留存率怎么提升”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。  小程序留存率如何提升?有哪些小技巧?  1、提高会
2023-06-26

linux怎么计算内存使用率

要计算Linux系统的内存使用率,可以使用free命令来获取内存的使用情况。具体步骤如下:1. 打开终端。2. 输入以下命令并按Enter键运行:```free -m```3. 等待命令执行完毕,将会显示当前系统的内存使用情况,包括总内存、
2023-08-30

怎么用PHP+MySQL设计发表评论留言功能

本篇内容介绍了“怎么用PHP+MySQL设计发表评论留言功能”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!首先我们放置一个评论表单和显示评论
2023-06-04

怎么在python中统计列表中元素出现的频率

这期内容当中小编将会给大家带来有关怎么在python中统计列表中元素出现的频率,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。python主要应用领域有哪些1、云计算,典型应用OpenStack。2、WEB
2023-06-14

mysql内存使用率过高怎么解决

如果MySQL内存使用率过高,可以尝试以下方法来解决:优化数据库配置:检查MySQL配置文件,根据实际情况调整缓冲区大小、连接数等参数,以减少内存使用。优化查询语句:优化查询语句,避免不必要的全表扫描和索引扫描,提高查询效率,减少内存占用。
mysql内存使用率过高怎么解决
2024-04-09

java中怎么计算cpu使用率

本篇文章给大家分享的是有关java中怎么计算cpu使用率,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。/proc/stat 文件内容:[root@Shentar ~]# cat
2023-06-17

Win10中怎么查看内存条频率

小编给大家分享一下Win10中怎么查看内存条频率,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!使用电脑的用户,相信对内存条并不陌生。这里要提一下的是电脑内存条频率
2023-06-27

MySQL中的买菜系统库存表设计技巧

MySQL中的买菜系统库存表设计技巧在一个买菜系统中,库存管理是一个关键的环节。而数据库作为数据存储和管理的工具,对于买菜系统的库存管理起着至关重要的作用。在设计MySQL中的库存表时,需要注意一些技巧,以确保系统的高效性和可扩展性。1.表
MySQL中的买菜系统库存表设计技巧
2023-11-01

Python中怎么计算环比增长率

Python中怎么计算环比增长率,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。 认识环比增长率很多企业比较注重自己的业务增长情况,时常会需要计算同比增长率和环比
2023-06-16

mysql怎么统计数据分组

mysql 使用 group by 子句分组统计数据,其语法为:select kolom_yang_ingin_dikelompokkan, fungsi_agregasi(kolom_yang_ingin_distatistik) fro
mysql怎么统计数据分组
2024-05-30

Shell中怎么利用memcache监控缓存命中率

这篇文章给大家介绍Shell中怎么利用memcache监控缓存命中率,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。#!/bin/bash################################检查memcach
2023-06-09

编程热搜

目录