LeetCode:Database 97.制作会话柱状图

Posted Xiao Miao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:Database 97.制作会话柱状图相关的知识,希望对你有一定的参考价值。

要求:写一个SQL查询来报告(访问时长区间,会话总数)。结果可用任何顺序呈现。

你想知道用户在你的 app 上的访问时长情况。因此决定统计访问时长区间分别为 “[0-5>”, “[5-10>”, “[10-15>” 和 “15 or more” (单位:分钟)的会话数量,并以此绘制柱状图。

表:Sessions的结构

+---------------------+---------+
| Column Name         | Type    |
+---------------------+---------+
| session_id          | int     |
| duration            | int     |
+---------------------+---------+
session_id 是该表主键
duration 是用户访问应用的时间, 以秒为单位

Sessions 表:

+-------------+---------------+
| session_id  | duration      |
+-------------+---------------+
| 1           | 30            |
| 2           | 199           |
| 3           | 299           |
| 4           | 580           |
| 5           | 1000          |
+-------------+---------------+

Result Table:

+--------------+--------------+
| bin          | total        |
+--------------+--------------+
| [0-5>        | 3            |
| [5-10>       | 1            |
| [10-15>      | 0            |
| 15 or more   | 1            |
+--------------+--------------+

对于 session_id 1,2 和 3 ,它们的访问时间大于等于 0 分钟且小于 5 分钟。
对于 session_id 4,它的访问时间大于等于 5 分钟且小于 10 分钟。
没有会话的访问时间大于等于 10 分钟且小于 15 分钟。
对于 session_id 5, 它的访问时间大于等于 15 分钟。

SQL语句:

with a as (
select case when duration<5*60 then '[0-5>' 
when duration>=5*60 and duration<10*60 then '[5-10>'
when duration>=10*60 and duration<15*60 then '[10-15>'
else '15 or more' end as bin
from sessions
),b as(
    select '[0-5>' as bin 
    union all
    select '[5-10>' as bin 
    union all
    select '[10-15>' as bin 
    union all
    select '15 or more' as bin 
) 

select b.bin,count(a.bin) as total 
from a 
right join b 
on a.bin=b.bin
group by b.bin;

以上是关于LeetCode:Database 97.制作会话柱状图的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode:Database 57.过去30天的用户活动 II

LeetCode(数据库)- 制作会话柱状图

Clear with query in database access 97 mdb c#

会话登录成功后如何插入表

leetcode-----97. 交错字符串

LeetCode笔记:Biweekly Contest 97