Chinaunix首页 | 论坛 | 博客
  • 博客访问: 471800
  • 博文数量: 145
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1139
  • 用 户 组: 普通用户
  • 注册时间: 2014-01-14 16:47
个人简介

路漫漫其修远兮,吾将上下而求索

文章分类

全部博文(145)

文章存档

2016年(10)

2015年(15)

2014年(120)

我的朋友

分类: Mysql/postgreSQL

2014-01-15 09:27:11

1:总体数据日报
   1 :在xj_ugn_auth数据库中的 account表中  通过joindate选项统计总的注册人数!

点击(此处)折叠或打开

  1. select a.account_id from xj_ugn_character.role a where exists (select id from xj_ugn_auth.account b where a.account_id=b.id and b.platform=3);
2:渠道数据
   2 : 在xj_ugn_auth数据库中的 account表中  通过platform 选项统计91,UC,当乐的注册人数!1:UC   2:91    3:当乐

点击(此处)折叠或打开

  1. select a.account_id from xj_ugn_character.role a where exists (select id from xj_ugn_auth.account b where a.account_id=b.id and b.platform=3) and FLOOR(create_time/86400) = 15911;
3:等级分布
   use xj_ugn_character;  选择数据库

点击(此处)折叠或打开

  1. select level,count(1) from role group by level;

4:阵营分布  1:蓬莱   2:昆仑   3:金鳌
  use xj_ugn_character;   选择阵营所在的数据库

点击(此处)折叠或打开

  1. select sum(race=3) as total from role; 即可得到 “金鳌”的角色数
  2. select sum(race=2) as total from role; 即可得到 “昆仑”的角色数
  3. select sum(race=1) as total from role; 即可得到 “蓬莱”的角色数
5:付费玩家分布

点击(此处)折叠或打开

  1. select a.account_id,level from xj_ugn_character.role a where exists (select account_id from xj_payment.payment b where a.account_id=b.account_id);
6:经济系统
use xj_ugn_character;  选择数据库

点击(此处)折叠或打开

  1. select sum(gold) as total from role_money; 统计金币
  2. select sum(ingot) as total from role_money; 统计元宝
  3. select sum(silver) as total from role_money; 统计银币
  4. select sum(coupon) as total from role_money; 统计元点卷
  5. select sum(honour) as total from role_money; 统计荣誉
  6. select sum(wingain) as total from role_money; 统计战绩

7:在线人数  查看在线人数

点击(此处)折叠或打开

  1. select from_unixtime(time),details from event_log;

8:

点击(此处)折叠或打开

  1. SELECT count(*) FROM `role` where FLOOR(create_time/86400) = 15904 and gmlevel = 0;

查的就是哪天创建角色的总数  8月8号是15925
9:统计充值的元宝

点击(此处)折叠或打开

  1. use xj_ugn_log;
  2. select sum(ingot_amount) as total from paylog;

10:转换时间


点击(此处)折叠或打开

  1. select from_unixtime(1374200121);






阅读(1124) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~