MYSQL数据分析案例总结

一、创建表,并将数据导入userinfo和orderinfo表中

1.导入数据:

第一步:建表

create table orderinfo(

orderid    int  primary key not null ,

userid      int,

isPaid      varchar(10),

price        float,

paidTime  varchar(30));

create table userinfo(

    userid  int primary key,

    sex    varchar(10),

    birth    date);

第二步:导数

load data local  infile 'C:/Users/lan/Desktop/123/order_info_utf.csv' into table orderinfo  fields terminated by ',';

load data local  infile 'C:/Users/lan/Desktop/123/user_info_utf.csv' into table userinfo  fields terminated by ',';

二、mysql数据分析案例

1.首先了解两个表的信息:

userinfo 用户信息表:

userid:主键,用户id

sex:用户性别

birth:用户生日


orderinfo 订单信息表

orderid:订单id

userid:用户id

ispaid:支付状态

price:支付价格


paidtime:支付时间


2.统计不同月份的下单人数

分析要点:不同月份,使用month函数获取订单日期中的月份,下单状态为已支付状态

select month(paidtime),count(distinct userid) from orderinfo where ispaid='已支付' group by month(paidtime);


3.统计用户三月份和四月份回购率和复购率

复购率:本月消费的人数有多少是重复购买的,即购买次数大于1次;

分步计算:

首先求出三月份存在消费的用户,以及每个用户的消费次数;(由于运行数据较大限制显示行数)

select userid,count(userid) as ct from orderinfo where ispaid='已支付' and month(paidtime)=3 group by userid limit 10;

如上表所示userid列为本月存在消费的用户,ct列为消费次数,统计ct列,count(ct)为计算本月存在消费总人数,通过if函数计算出消费次数大于1的消费者数量,即复购的消费者数,相除即为复购率;

select count(ct),count(if(ct>1,1,null)) as nt from

(select userid,count(userid) as ct from orderinfo where ispaid='已支付' and month(paidtime)=3 group by userid) t;

也可使用case when方法,结果相同;

select count(ct),count(case when ct>1 then 1 else null end) as nt from

(select userid,count(userid) as ct from orderinfo where ispaid='已支付' and month(paidtime)=3 group by userid) t;

回购率:三月份购买的人数,四月份依旧购买;

首先用userid和月份进行分组,计算用户在当月是否消费过;(由于运行数据较大限制显示行数)

select userid,date_format(paidtime,'%Y-%m-01') from orderinfo where ispaid='已支付' group by userid,date_format(paidtime,'%Y-%m-01') limit 10;

通过left join对表进行关联,关联出三月、四月都存在消费情况(由于运行数据较大限制显示行数)

如图,userid5 在3月和4月都存在消费,

select * from

(select userid,date_format(paidtime,'%Y-%m-01') as m from orderinfo where ispaid='已支付' group by userid,date_format(paidtime,'%Y-%m-01')) t1

left join

(select userid,date_format(paidtime,'%Y-%m-01') as m from orderinfo where ispaid='已支付' group by userid,date_format(paidtime,'%Y-%m-01'))t2

on t1.userid=t2.userid and t1.m=date_sub(t2.m,interval 1 month)  limit 20;

对上表进行计数,计算出当月存在消费的情况和下月依然存在消费的情况,相除即为复购率;

select t1.m,count(t1.m),count(t2.m) from

(select userid,date_format(paidtime,'%Y-%m-01') as m from orderinfo where ispaid='已支付' group by userid,date_format(paidtime,'%Y-%m-01')) t1

left join

(select userid,date_format(paidtime,'%Y-%m-01') as m from orderinfo where ispaid='已支付' group by userid,date_format(paidtime,'%Y-%m-01'))t2

on t1.userid=t2.userid and t1.m=date_sub(t2.m,interval 1 month) group by t1.m;

3.统计男女用户的消费频次是否有差异;

首先性别字段存在空值,先把空值过滤掉;

select * from userinfo where sex <>' ' limit 10;

将订单表与用户表相关联;

select * from orderinfo o

inner join

(select * from userinfo where sex<>' ') t

on o.userid=t.userid limit 20;

统计男、女的消费总次数;

select o.userid,sex,count(1) from orderinfo o

inner join

(select * from userinfo where sex<>' ') t

on o.userid=t.userid

group by o.userid,sex limit 20;

统计男女消费频次差异;

select sex,avg(ct) from (

select o.userid,sex,count(1) as ct from orderinfo o

inner join

(select * from userinfo where sex<>' ') t

on o.userid=t.userid

group by o.userid,sex) t2

group by sex;

4.统计多次消费的用户,第一次消费和最后一次消费的时间间隔

首先求出多次消费的用户;

select * from orderinfo where ispaid='已支付' group by userid having count(1)>1;

求出最大时间,和最小时间,时间间隔(求分组后的组内的最大值和最小值,按照userid 分组已经过滤掉了消费次数小于1的用户,所以至少存在两次消费情况,课选出最大时间,最小时间)

select userid,max(paidtime),min(paidtime) ,datediff(max(paidtime),min(paidtime)) as mt from orderinfo where ispaid='已支付' group by userid having count(1)>1 limit 20;

5.统计不同年龄段,消费是否有差异:

首先统计用户的年龄段;注意年龄计算函数,过滤无效数据;

select userid,ceil((year(now())-year(birth))/10) as ct from userinfo where birth>'1901-00-00' limit 10;

订单表和用户表关联,查看不同年龄段消费情况;

select * from orderinfo o

inner join

(select userid,ceil((year(now())-year(birth))/10) as ct from userinfo where birth>'1901-00-00') t

on o.userid=t.userid limit 10;


统计不同年龄段消费频次;

select o.userid,t.ct,count(t.ct) as mt from orderinfo o

inner join

(select userid,ceil((year(now())-year(birth))/10) as ct from userinfo where birth>'1901-00-00') t

on o.userid=t.userid group by o.userid,t.ct limit 10;

6.统计消费二八法则,消费20%的用户,贡献了多少额度;

首先计算用户的消费总金额;

select userid,sum(price) from orderinfo where ispaid='已支付' group by userid limit 10;

select userid,sum(price) as total from orderinfo where ispaid='已支付' group by userid limit 10;

计算出前20%的用户;

select count(userid) *0.2,sum(total) from (

select userid,sum(price) as total from orderinfo where ispaid='已支付' group by userid order by total) t;

由于这里计算出的结果是前17000行,所以将内层查询条件限制为17000;

select count(userid) ,sum(total) from (

select userid,sum(price) as total from orderinfo where ispaid='已支付' group by userid order by total desc limit 17000) t;

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容