LeetCode:Database 53.查询活跃业务

Posted Xiao Miao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:Database 53.查询活跃业务相关的知识,希望对你有一定的参考价值。

要求:写一段 SQL 来查询所有活跃的业务。

如果一个业务的某个事件类型的发生次数大于此事件类型在所有业务中的平均发生次数,并且该业务至少有两个这样的事件类型,那么该业务就可被看做是活跃业务。

事件表:Events的结构

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| business_id   | int     |
| event_type    | varchar |
| occurences    | int     | 
+---------------+---------+
此表的主键是 (business_id, event_type)。
表中的每一行记录了某种类型的事件在某些业务中多次发生的信息。

Events 表:

+-------------+------------+------------+
| business_id | event_type | occurences |
+-------------+------------+------------+
| 1           | reviews    | 7          |
| 3           | reviews    | 3          |
| 1           | ads        | 11         |
| 2           | ads        | 7          |
| 3           | ads        | 6          |
| 1           | page views | 3          |
| 2           | page views | 12         |
+-------------+------------+------------+

Result Table:

+-------------+
| business_id |
+-------------+
| 1           |
+-------------+ 
'reviews'、 'ads' 和 'page views' 的总平均发生次数分别是 (7+3)/2=5, (11+7+6)/3=8, (3+12)/2=7.5。
id 为 1 的业务有 7 个 'reviews' 事件(大于 5)和 11 个 'ads' 事件(大于 8),所以它是活跃业务。

SQL语句:

select business_id
from(
select business_id,event_type,occurences,avg(occurences) over(partition by event_type) as r
from events)a
where occurences>r
group by business_id
having count(*)>=2;

以上是关于LeetCode:Database 53.查询活跃业务的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode:Database 100.活跃用户

LeetCode:Database 100.活跃用户

LeetCode(数据库)- 查询活跃业务

LeetCode(数据库)- 查询近30天活跃用户数

LeetCode:Database 96.净现值查询

LeetCode:Database 96.净现值查询