SQL comparison of time difference between two adjacent records

jacklove
Release: 2018-06-14 16:14:06
Original
4596 people have browsed it

In the afternoon, I saw that a statistical report was generated for the project, in which the statistical time difference between two adjacent records recorded in the XX table is

The data in the table is as follows:


It is required that the creation time difference between two adjacent records, such as the 1st and 2nd record, be calculated.

That is,

zhouhui 5 seconds

24 seconds

##select

t.username,(

maxSQL comparison of time difference between two adjacent records( t.CREATIONDATE)-

min
    ( t.CREATIONDATE))*24*60*60,
  1. count

    (t.username)/2##fromofloginlog t

  2. ##--where USERNAME = 'zhouhui'

  3. group

    byt.username

  4. Statistics of user online time are calculated through grouping (that is, the difference between the two records before and after )

    Rendering:#Explanation that the last field is used to count the number of user logins.

  5. The default value for oracle to subtract two times is the number of days

The default value for oracle to subtract two times is the number of days*24, which is the number of hours difference

The default value for subtraction is days*24*60, which is the number of minutes difference.

The default value for oracle subtraction between two times is number of days*24*60*60, which is the number of seconds difference.

Method 2:

Sql code

select

username,

sum

(b),

countSQL comparison of time difference between two adjacent records(username) / 2

  1. from(selectid, username, (CREATIONDATE - lgtime) * 24 * 60 * 60asb

  2. (type) over(partitionbyusernameorderby

    CREATIONDATE) lgtype,
  3. lag(CREATIONDATE) over(partitionbyusernameorderby

    CREATIONDATE) lgtime
  4. fromofloginlog t))

  5. ##-- where USERNAME = 'zhouhui')

  6. group

    byusername

  7. ## The effect is the same and I won’t post it here
  8. Reviewed the basic SQL again haha20100520 Some changes in requirements require that the number of statistics is not the sum and mean of TYPE 1 and 0 records, but only the value of TYPE=0,This SQL grouping cannot be like this. I thought about it and improved the SQLSql code

select

g.username, g.

time

, h.

count

SQL comparison of time difference between two adjacent records

  1. from(selectt.username,

  2. ## floor((
  3. max

    (t.CREATIONDATE) -min(t.CREATIONDATE)) * 24 * 60 * 60)astime

  4. # fromofloginlog t, ofuser b####andt.username = b.username

  5. (selectt.username,count(t.username)as

  6. count
  7. ##
  8. ##whereg.username = h.username

  9. ##order

    bycountdesc

  10. Query resultsThe analysis time difference is the difference between the two sets, and the number of statistics later is only the number of records with a separate restriction of TYPE=0. The number of statistical data is inconsistent, so it is difficult to implement it in one group. The idea is to implement USERNAME and TIME first. The records count USERNAME and the number of records that satisfy TYPE=0 and merge the two results through the inline relationship of SELECT XX FROM A B 2 temporary tables to achieve the merged result set

  11. This article explains SQL adjacent 2 Compare the time difference of records. For more related content, please pay attention to the PHP Chinese website.
  12. Related recommendations:.net2.0 connection Mysql5 database configuration

  13. Detailed explanation of the difference between cookie and session

The above is the detailed content of SQL comparison of time difference between two adjacent records. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
sql
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!