简体   繁体   English

当行中的时间戳小于或等于某个值时,使用分析函数对一组记录进行分组

[英]Use analytic functions to group a set of records when timestamps in rows is less or equal than a value

I have a table in an Oracle Database that has, among others, a DATE column that is loaded with the insertion timestamp of each row. 我在Oracle数据库中有一个表,其中有一个DATE列,其中装有每一行的插入时间戳。 I need to use existing data in such table to analyze the correlation between some events, so that with data like this: 我需要使用此类表中的现有数据来分析某些事件之间的相关性,以便使用这样的数据:

COL_1         COL_2         TS
    A             1         Mon 15, February 2010 10:03:22
    B             2         Mon 15, February 2010 10:05:37
    C             3         Mon 15, February 2010 10:20:21
    D             4         Mon 15, February 2010 10:20:21
    E             5         Mon 15, February 2010 10:20:24
    F             6         Mon 15, February 2010 10:23:35
    G             7         Mon 15, February 2010 10:45:22

I would like to correlate to something like this, assumming related records are between a 5-minutes max difference between current and next "TS": 我想与此相关,假设相关记录介于当前“ TS”与下一个“ TS”之间的最大差值为5分钟之间:

FIRST_TS                            COUNT
Mon 15, February 2010 10:03:22          2
Mon 15, February 2010 10:20:21          4
Mon 15, February 2010 10:45:22          1

Is is possible to use analytic functions to achieve this? 是否可以使用分析功能来实现这一目标? How? 怎么样?

This will group together rows that are less than 5 minutes distant from the previous row: 这会将距离前一行少于5分钟的行分组在一起:

--ALTER SESSION SET nls_date_format= 'dy dd, month yyyy hh24:mi:ss';
--ALTER SESSION SET nls_date_language='ENGLISH';
SQL> WITH DATA AS (
  2  SELECT to_date('Mon 15, February 2010 10:03:22') ts FROM dual
  3  UNION ALL SELECT to_date('Mon 15, February 2010 10:05:37') FROM dual
  4  UNION ALL SELECT to_date('Mon 15, February 2010 10:20:21') FROM dual
  5  UNION ALL SELECT to_date('Mon 15, February 2010 10:20:21') FROM dual
  6  UNION ALL SELECT to_date('Mon 15, February 2010 10:20:24') FROM dual
  7  UNION ALL SELECT to_date('Mon 15, February 2010 10:23:35') FROM dual
  8  UNION ALL SELECT to_date('Mon 15, February 2010 10:45:22') FROM dual
  9  )
 10  SELECT MIN(ts) first_ts, COUNT(*) COUNT
 11    FROM (SELECT ts, SUM(gap) over(ORDER BY ts) ts_group
 12             FROM (SELECT ts,
 13                           CASE
 14                              WHEN ts - lag(ts) over(ORDER BY ts)
 15                                    <= 5 / (60 * 24) THEN
 16                               0
 17                              ELSE
 18                               1
 19                           END gap
 20                      FROM DATA))
 21  GROUP BY ts_group;

FIRST_TS                              COUNT
-------------------------------- ----------
mon 15, february  2010 10:03:22           2
mon 15, february  2010 10:20:21           4
mon 15, february  2010 10:45:22           1

I don't think you need analytics for this, you just need to generate some five minute intervals. 我认为您不需要为此进行分析,只需要生成大约五分钟的间隔即可。 The following code uses a Common Table Expression (AKA sub-query factoring) to generate five minute intervals from a given start date. 以下代码使用通用表表达式(AKA子查询分解)从给定的开始日期生成五分钟的间隔。 The main query uses SUM() and CASE() to produce a count of records which fall within the interval 主查询使用SUM()和CASE()来产生落入间隔内的记录数

Here is the test data: 这是测试数据:

SQL> select * from t23
  2  /

C       COL2 COL3
- ---------- -----------------
A          1 15-feb-2010 10:03
B          2 15-feb-2010 10:05
C          3 15-feb-2010 10:20
D          4 15-feb-2010 10:20
E          5 15-feb-2010 10:20
F          6 15-feb-2010 10:23
G          7 15-feb-2010 10:45

7 rows selected.

SQL>

And here is the outcome 这是结果

SQL> with t_range as (
  2      select to_date('15 February 2010 10:00','DD Month YYYY hh24:mi')
  3                                                + ((level-1)/288) as this_5mins
  4             , to_date('15 February 2010 10:00','DD Month YYYY hh24:mi')
  5                                                + (level/288) as next_5mins
  6      from dual
  7      connect by level <= 12
  8      )
  9  select t_range.this_5mins
 10         , sum(case when t23.col3 >= t_range.this_5mins
 11                    and t23.col3 < t_range.next_5mins
 12                    then 1
 13                    else 0 end ) as cnt
 14  from t23 cross join t_range
 15  group by t_range.this_5mins
 16  /

THIS_5MINS               CNT
----------------- ----------
15-feb-2010 10:10          0
15-feb-2010 10:20          4
15-feb-2010 10:30          0
15-feb-2010 10:05          1
15-feb-2010 10:55          0
15-feb-2010 10:15          0
15-feb-2010 10:40          0
15-feb-2010 10:45          1
15-feb-2010 10:00          1
15-feb-2010 10:35          0
15-feb-2010 10:25          0
15-feb-2010 10:50          0

12 rows selected.

SQL>

Here is a version with the analytic functions. 这是带有分析功能的版本。 Just substitute your table for the union subquery where I create a table with your data: 只需用您的表代替union子查询,即可在其中用您的数据创建表:

select distinct 
  first_value(ts) over (partition by continuous_group order by ts) first_ts
  , count(ts) over (partition by continuous_group) count
from (
  select col_1, col_2, ts, sum(discontinuity) over (order by ts) continuous_group
  from (
    select col_1, col_2, ts, case when lag(ts) over (order by ts) + numtodsinterval(5,'MINUTE') <= ts then 1 else 0 end discontinuity
    from (
    select 'A' col_1, 1 col_2, to_date('2010-2-15 10:03:22', 'YYYY-MM-DD HH24:MI:SS') ts from dual
    union (
    select 'B' col_1, 2 col_2, to_date('2010-2-15 10:05:37', 'YYYY-MM-DD HH24:MI:SS') ts from dual)
    union (
    select 'C' col_1, 3 col_2, to_date('2010-2-15 10:20:21', 'YYYY-MM-DD HH24:MI:SS') ts from dual)
    union (
    select 'D' col_1, 4 col_2, to_date('2010-2-15 10:20:21', 'YYYY-MM-DD HH24:MI:SS') ts from dual)
    union (
    select 'E' col_1, 5 col_2, to_date('2010-2-15 10:20:24', 'YYYY-MM-DD HH24:MI:SS') ts from dual)
    union (
    select 'F' col_1, 6 col_2, to_date('2010-2-15 10:23:35', 'YYYY-MM-DD HH24:MI:SS') ts from dual)
    union (
    select 'G' col_1, 7 col_2, to_date('2010-2-15 10:45:22', 'YYYY-MM-DD HH24:MI:SS') ts from dual)
))
) order by first_value(ts) over (partition by continuous_group order by ts);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 当累积列小于或等于目标时设置组数 - Set a Group number when cumulative column less than or equal to target SQL:删除A表id小于等于B表某组最大id的记录 - SQL: delete records from the table A when id is less than equal to maximum id of a group in table B 选择总经过值小于或等于的行 - Select rows where total elapsed value is less than or equal to 如何使用 sql 到 select 学生的数学和英语成绩小于或等于 6 的记录 - How can I use sql to select records of students who have grade value less than or equal to 6 in both mathematics and Engish Language 查询以获取所有记录,直到列的总和小于或等于一个值 - Query to get all records until the sum of column less than or equal a value 获取所有记录,直到列的总和小于或等于给定值和类别 - Get all records until the sum of column less than or equal a given value and category 如何使用BigQuery解析函数计算带时间戳的行之间的时间? - How to use BigQuery Analytic Functions to calculate time between timestamped rows? 最好在sql查询中使用“小于等于”或“ in” - Better to use “less than equal” or “in” in sql query SQL JOIN值小于或等于number - SQL JOIN value less than or equal to number 上一季度的最后一个值,因为它的日期小于或等于当前行的日期-SQL - Last value from previous quarter, given that it's date is less than or equal the current rows date - SQL
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM