- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个场景,我试图计算购买的产品数量,其中产品购买总和 = MySQL 总购买量的 70%。
换句话说,有多少独特的产品代表了前 70% 的产品购买量。
考虑以下示例:
create table purchases
(id int not null auto_increment primary key,
`product`varchar(10),
`purchased` int);
insert into purchases values
(1,'pen',1),(2,'pencil',5),(3,'pencil',5),
(4,'eraser',3),(5,'case',1),(6,'case',1),
(7,'pen',1),(8,'pen',1),(9,'pen',1),(10,'pen',1);
如您所见,我分别购买了 4 种独特产品 10 次。
总共购买了 20 件产品:10 支铅笔、5 支钢笔、3 block 橡皮和 2 个盒子。
我要确定的是需要多少产品才能占总购买量的 70%。所以在这种情况下,期望的结果是 2。
2 来自 10 支铅笔加上 5 支钢笔 = 15 = ~70% OF 20。
我创建了一个 sqlfiddle如果它有任何帮助。
如有任何帮助,我们将不胜感激。谢谢,皮特
最佳答案
用户变量和一些子查询可以帮助实现你想要的。
首先,你需要知道购买总额;那么您需要编写一个查询来累积购买并“标记”您想要的产品。像这样:
MySQL 5.6 架构设置:
create table purchases (
id int not null auto_increment primary key,
`product`varchar(10),`purchased` int
);
insert into purchases
values (1,'pen',1),(2,'pencil',5),(3,'pencil',5)
, (4,'eraser',3),(5,'case',1),(6,'case',1)
, (7,'pen',1),(8,'pen',1),(9,'pen',1)
,(10,'pen',1);
查询 1:
-- First, store "sum(purchased)" and the desired percentile into user variables
select sum(purchased), 0.7
into @total_purchases
, @percentile
from purchases
Results :(无)
查询 2:
-- Test the query: This will "flag" the desired records
select p.*
, @cummulative := @cummulative + sum_purchased as cummulative
, @cummulative / @total_purchases as cummulative_p
, @cummulative / @total_purchases <= @percentile as flag
from
(
select @cummulative := 0
) as init,
(
select product, sum(purchased) as sum_purchased
from purchases
group by product
order by sum_purchased desc
) as p
Results :
| product | sum_purchased | cummulative | cummulative_p | flag |
|---------|---------------|-------------|---------------|------|
| pencil | 10 | 10 | 0.5 | 1 |
| pen | 5 | 15 | 0.75 | 0 |
| eraser | 3 | 18 | 0.9 | 0 |
| case | 2 | 20 | 1 | 0 |
查询 3:
-- Get the final result: Use the above query as a data source for your final result
select product, sum_purchased
from
(
select p.*
, @cummulative := @cummulative + sum_purchased as cummulative
, @cummulative / @total_purchases as cummulative_p
, @cummulative / @total_purchases <= @percentile as flag
from
(
select @cummulative := 0
) as init,
(
select product, sum(purchased) as sum_purchased
from purchases
group by product
order by sum_purchased desc
) as p
) as a
where flag = 1
Results :
| product | sum_purchased |
|---------|---------------|
| pencil | 10 |
另一种方式:
如果您想强制包含“打破”百分位数障碍的第一个产品,您可以尝试这种(类似的)方法:
MySQL 5.6 架构设置:
create table purchases (
id int not null auto_increment primary key,
`product`varchar(10),`purchased` int
);
insert into purchases
values (1,'pen',1),(2,'pencil',5),(3,'pencil',5)
, (4,'eraser',3),(5,'case',1),(6,'case',1)
, (7,'pen',1),(8,'pen',1),(9,'pen',1)
,(10,'pen',1);
查询 1:
-- First, store "sum(purchased)" and the desired percentile into user variables
select sum(purchased), 0.7
into @total_purchases
, @percentile
from purchases
Results :(无)
查询 2:
-- Test the query: This will "flag" the desired records
select p.*
, @cummulative := @cummulative + sum_purchased as cummulative
, @cummulative / @total_purchases as cummulative_p
, @flag as flag
, @flag := case when @cummulative / @total_purchases > @percentile then 0 else 1 end as new_flag
from
(
select @cummulative := 0
, @flag := 1
) as init,
(
select product, sum(purchased) as sum_purchased
from purchases
group by product
order by sum_purchased desc
) as p
Results :
| product | sum_purchased | cummulative | cummulative_p | flag | new_flag |
|---------|---------------|-------------|---------------|------|----------|
| pencil | 10 | 10 | 0.5 | 1 | 1 |
| pen | 5 | 15 | 0.75 | 1 | 0 |
| eraser | 3 | 18 | 0.9 | 0 | 0 |
| case | 2 | 20 | 1 | 0 | 0 |
查询 3:
-- Get the final result: Use the above query as a data source for your final result
select product, sum_purchased
from
(
select p.*
, @cummulative := @cummulative + sum_purchased as cummulative
, @cummulative / @total_purchases as cummulative_p
, @flag as flag
, @flag := case when @cummulative / @total_purchases > @percentile then 0 else 1 end as new_flag
from
(
select @cummulative := 0
, @flag := 1
) as init,
(
select product, sum(purchased) as sum_purchased
from purchases
group by product
order by sum_purchased desc
) as p
) as a
where flag = 1
Results :
| product | sum_purchased |
|---------|---------------|
| pencil | 10 |
| pen | 5 |
关于mysql - 尝试使用 mysql 确定前 70% 的购买,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30196194/
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 6年前关闭。 Improve t
我们有一个专有的销售系统,我们已经使用了一段时间了。最近我们添加了“购买”方面,以便我们可以比较匹配产品的平均购买/销售价格以及查看库存状况。 在 MySQL 中,我有 2 个表:tblPurchas
在查看 Paypal 文档以寻找针对这种情况的解决方案后,我一头雾水。我想要的是一种让购物车订阅(定期付款)和购买商品的方法。有没有一种方法可以解决这个问题,或者我是否必须做一些自定义的事情(如果我使
我想知道是否可以使用youtube api获取可购买或可租借的电影列表。当我转到youtube网站并登录到Google帐户时,我可以看到要购买的电影及其价格。 我想在我的应用程序(http://www
我使用 JavaScript 购买 SDK 和 Node.js。 const fetch = require('node-fetch'); const shopify = require('shopi
我购买了三个不同期限的不同订阅。我已经配置了测试账户,我可以进行测试购买。对于这些购买,谷歌不向我收费,但它们看起来非常像真实的。购买成功后,应用内结算会向我发送一些有关我的购买的数据,例如 pack
我目前正在实现应用内购买,并且刚刚阅读了一些帖子,说需要恢复购买按钮,否则苹果将拒绝应用。 我不想在我的 UI 设计中添加第二个按钮。 所以我的问题是... 有没有办法检查用户之前是否进行过应用内购买
我的应用中有多个项目。我有两个设备。如果我在这些设备中的第一个上购买商品,然后尝试在另一个设备上购买相同的商品,我不能。(Google play intent 显示消息 - 商品已拥有!然后它崩溃了.
有没有办法检测何时通过应用商店为您的应用进行了购买? 检测应用内购买似乎很容易(即我们的服务器可以收到通知),但是对于直接购买有没有办法做到这一点? 如果没有,是否有一些用户的唯一标识符(例如购买时通
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我计划在用户使用该应用程序成功扫描二维码时为应用内购买提供折扣。我知道无法为现有商品提供折扣。我打算以折扣价添加另一件商品。有没有人以前有过使用这种方法的经验? 提前致谢 最佳答案 没有办法直接这样做
我很好奇其他商店在基础应用程序框架方面做了什么?我将应用程序框架视为能够提供额外或扩展的功能以提高基于它构建的应用程序的质量。 有各种开箱即用的框架,例如 Spring(或 Spring.NET)等。
我们正在开发一款使用非续订订阅 IAP 模型的应用。在沙盒中测试订阅购买流程时,我们看到弹出两 strip 有“购买”按钮的消息。 显示第一条消息和产品信息:“您想以 xx.xx 美元购买一个订阅吗?
我的老板购买了 Microsoft 365,它包含三种产品。他现在要求我设计一个管理系统,比如员工自助服务门户。我特此寻求有关从哪里开始或使用哪种产品的建议,因为我对此很陌生。 我尝试了一些研究,发现
我的老板购买了 Microsoft 365,它包含三种产品。他现在要求我设计一个管理系统,比如员工自助服务门户。我特此寻求有关从哪里开始或使用哪种产品的建议,因为我对此很陌生。 我尝试了一些研究,发现
我刚刚了解了IAP Cracker的存在,并试图找出在我的应用中验证IAP购买的最佳方法。 我无法确定的是IAP Cracker是否可以处理“消耗性”商品。如果没有,我没有什么可担心的。 这是维护/验
我正在编写一个允许应用内购买的简单应用。我已经使用 SKU 代码 android.test.purchased 进行了测试,一切正常。 我进入我的 google play 控制台,创建了一个应用程序,
我即将启动一个应用程序,该应用程序将包含多个“应用程序内购买”。 我想做的是有一种方法可以提供少量免费的“应用内购买”来选择评论家等人。 在 apple 框架内有没有办法做到这一点,如果没有,我可以采
所以我在这个网站上工作,用户可以在该网站上发布他们的商品,其他用户可以将一些商品添加到他们的购物车并在线购买。 我考虑的流程是这样的: 商家发布商品及其信用卡/ Paypal 信息。 买家将(来自不同
我对这个主题进行了广泛的研究,但我的知识仍然很模糊。我正在寻找一个简单站点的基本 DV,但我看到每个在线 SSL 都具有三个级别, Root->Intermidiate (充当 Root 的代理)和我
我是一名优秀的程序员,十分优秀!