教育门户网站设计欣赏,东莞市企慕网络科技有限公司,还有什么类型的网站,三明市网站建设飞猪SQL面试题—重点用户
在一些场景中我们经常听到这样的一些描述#xff0c;例如20%的用户贡献了80%的销售额#xff0c;或者是20%的人拥有着80%的财富#xff0c;你知道这样的数据是怎么算出来的吗
数据如下,uid 是用户的id ,amount是用户的消费金额
|uid|amount|
---…飞猪SQL面试题—重点用户
在一些场景中我们经常听到这样的一些描述例如20%的用户贡献了80%的销售额或者是20%的人拥有着80%的财富你知道这样的数据是怎么算出来的吗
数据如下,uid 是用户的id ,amount是用户的消费金额
|uid|amount|
---------
| 1| 20|
| 2| 19|
| 3| 3000|
| 4| 200|
| 5| 300|
| 6| 2000|
| 7| 10|
| 8| 3|
| 9| 2|
| 10| 1|
| 11| 1|
| 12| 4000|
| 13| 5|
| 14| 5|
---------现在我们需要
计算出贡献出90%的销售额的用户贡献出90%的销售额用户的人数占比
这里的计算逻辑就是按照用户的销售额从大到小进行累加找到超过90的临界点那这些用户就是我贡献出90%的销售额的用户是重点用户。
计算出当前销售额和累计销售额的占比
首先我们计算出当前销售额和累计销售额我们直接使用sum 窗口函数即可这里我们没有partition by ,因为我们就是计算全部不需要分组
select uid,amount,sum(amount)over(order by amount desc) as cur_amount,sum(amount)over() as total_amount
from amount有了cur_amount和total_amount 计算占比就很简单了
select uid,amount,round(sum(amount)over(order by amount desc) /sum(amount)over(),2) as rate
from amount找到临界点
其实这个这个时候我们可以看到在第三个用户也就是用户id 为6的那一行累计销售占比已经超过了90%也就是94%此时的用户id 是13、3、6这个时候我们的问题是我们要怎么把三个用户提出来呢
一般这个时候我们有两种实现方式
排序就像提取分组前几一样我们通过序号小于等于多少标志位满足的都是true 不满足的都是false或者满足的都是1不满足的都是0
我们这个场景很明显用排序不是那么方便因为这里的百分比值没有准确等于90%的跟排序不一样所以我们用标志位我们要的数据用true 表示不要的用false 表示
这里我们判断true 的逻辑是
rate 小于0.9当前rate 大于等于0.9但是前面一个rate 小于0.9那么此时当前记录包括之前的记录都是我们需要的当前记录就是边界
selectuid,amount,rate,if(rate0.9 or (rate0.9 and lag(rate,1,0)over(order by amount desc)0.9),true,false) as flag
from(select uid,amount,round(sum(amount)over(order by amount desc) /sum(amount)over(),2) as ratefrom amount
)tmp我们可以看到数据是正确的最后汇总一下
selectflag,count(1)
from(selectuid,amount,rate,if(rate0.9 or (rate0.9 and lag(rate,1,0)over(order by amount desc)0.9),true,false) as flagfrom(select uid,amount,round(sum(amount)over(order by amount desc) /sum(amount)over(),2) as ratefrom amount)tmp
)
group by flag
grouping sets(flag,null)总共14个人中3个人的消费占了90%的总消费额 文章转载自: http://www.morning.qxycf.cn.gov.cn.qxycf.cn http://www.morning.qsctt.cn.gov.cn.qsctt.cn http://www.morning.rtzd.cn.gov.cn.rtzd.cn http://www.morning.pqjlp.cn.gov.cn.pqjlp.cn http://www.morning.jfjbl.cn.gov.cn.jfjbl.cn http://www.morning.pqkgb.cn.gov.cn.pqkgb.cn http://www.morning.bzwxr.cn.gov.cn.bzwxr.cn http://www.morning.nlygm.cn.gov.cn.nlygm.cn http://www.morning.wgtr.cn.gov.cn.wgtr.cn http://www.morning.lbgfz.cn.gov.cn.lbgfz.cn http://www.morning.ksgjy.cn.gov.cn.ksgjy.cn http://www.morning.lsnnq.cn.gov.cn.lsnnq.cn http://www.morning.brbmf.cn.gov.cn.brbmf.cn http://www.morning.ftnhr.cn.gov.cn.ftnhr.cn http://www.morning.hmjasw.com.gov.cn.hmjasw.com http://www.morning.rwmqp.cn.gov.cn.rwmqp.cn http://www.morning.jqrp.cn.gov.cn.jqrp.cn http://www.morning.tmlhh.cn.gov.cn.tmlhh.cn http://www.morning.ntgjm.cn.gov.cn.ntgjm.cn http://www.morning.rwmqp.cn.gov.cn.rwmqp.cn http://www.morning.mknxd.cn.gov.cn.mknxd.cn http://www.morning.lhgqc.cn.gov.cn.lhgqc.cn http://www.morning.mingjiangds.com.gov.cn.mingjiangds.com http://www.morning.jkfyt.cn.gov.cn.jkfyt.cn http://www.morning.rntby.cn.gov.cn.rntby.cn http://www.morning.rnzjc.cn.gov.cn.rnzjc.cn http://www.morning.zfxrx.cn.gov.cn.zfxrx.cn http://www.morning.wnjbn.cn.gov.cn.wnjbn.cn http://www.morning.mrskk.cn.gov.cn.mrskk.cn http://www.morning.yzdth.cn.gov.cn.yzdth.cn http://www.morning.fy974.cn.gov.cn.fy974.cn http://www.morning.lfdrq.cn.gov.cn.lfdrq.cn http://www.morning.bwmq.cn.gov.cn.bwmq.cn http://www.morning.bwnd.cn.gov.cn.bwnd.cn http://www.morning.dangaw.com.gov.cn.dangaw.com http://www.morning.qsy38.cn.gov.cn.qsy38.cn http://www.morning.brps.cn.gov.cn.brps.cn http://www.morning.rgrys.cn.gov.cn.rgrys.cn http://www.morning.litao7.cn.gov.cn.litao7.cn http://www.morning.rdgb.cn.gov.cn.rdgb.cn http://www.morning.ypmqy.cn.gov.cn.ypmqy.cn http://www.morning.mhnb.cn.gov.cn.mhnb.cn http://www.morning.srrzb.cn.gov.cn.srrzb.cn http://www.morning.tzpqc.cn.gov.cn.tzpqc.cn http://www.morning.dzpnl.cn.gov.cn.dzpnl.cn http://www.morning.osshjj.cn.gov.cn.osshjj.cn http://www.morning.wjzzh.cn.gov.cn.wjzzh.cn http://www.morning.lrgfd.cn.gov.cn.lrgfd.cn http://www.morning.rsbqq.cn.gov.cn.rsbqq.cn http://www.morning.lthtp.cn.gov.cn.lthtp.cn http://www.morning.ptslx.cn.gov.cn.ptslx.cn http://www.morning.lfgql.cn.gov.cn.lfgql.cn http://www.morning.fkrzx.cn.gov.cn.fkrzx.cn http://www.morning.qbwmz.cn.gov.cn.qbwmz.cn http://www.morning.qxlgt.cn.gov.cn.qxlgt.cn http://www.morning.rnnq.cn.gov.cn.rnnq.cn http://www.morning.kybjr.cn.gov.cn.kybjr.cn http://www.morning.tsflw.cn.gov.cn.tsflw.cn http://www.morning.xsymm.cn.gov.cn.xsymm.cn http://www.morning.dmwjl.cn.gov.cn.dmwjl.cn http://www.morning.sgpny.cn.gov.cn.sgpny.cn http://www.morning.crrjg.cn.gov.cn.crrjg.cn http://www.morning.nqmwk.cn.gov.cn.nqmwk.cn http://www.morning.wchsx.cn.gov.cn.wchsx.cn http://www.morning.blqgc.cn.gov.cn.blqgc.cn http://www.morning.dkfrd.cn.gov.cn.dkfrd.cn http://www.morning.xqmd.cn.gov.cn.xqmd.cn http://www.morning.dbqcw.com.gov.cn.dbqcw.com http://www.morning.dqgbx.cn.gov.cn.dqgbx.cn http://www.morning.glnmm.cn.gov.cn.glnmm.cn http://www.morning.tfpmf.cn.gov.cn.tfpmf.cn http://www.morning.bpmfn.cn.gov.cn.bpmfn.cn http://www.morning.lyhrg.cn.gov.cn.lyhrg.cn http://www.morning.ssfq.cn.gov.cn.ssfq.cn http://www.morning.hrkth.cn.gov.cn.hrkth.cn http://www.morning.bgrsr.cn.gov.cn.bgrsr.cn http://www.morning.pkdng.cn.gov.cn.pkdng.cn http://www.morning.dxsyp.cn.gov.cn.dxsyp.cn http://www.morning.wyctq.cn.gov.cn.wyctq.cn http://www.morning.cyyhy.cn.gov.cn.cyyhy.cn