明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

sql 相鄰2條記錄時(shí)間差比較

[摘要]下午看到項(xiàng)目有個(gè)統(tǒng)計(jì)報(bào)表的生成,其中XX表中記錄相鄰2條記錄統(tǒng)計(jì)時(shí)間差 即 表中數(shù)據(jù)如下: 要求相鄰2條記錄 如第1條和第2條記錄創(chuàng)建時(shí)間差統(tǒng)計(jì)出來 即 zhouhui ...
下午看到項(xiàng)目有個(gè)統(tǒng)計(jì)報(bào)表的生成,其中XX表中記錄相鄰2條記錄統(tǒng)計(jì)時(shí)間差 即

表中數(shù)據(jù)如下:


sql 相鄰2條記錄時(shí)間差比較

要求相鄰2條記錄 如第1條和第2條記錄創(chuàng)建時(shí)間差統(tǒng)計(jì)出來

zhouhui 5秒

dingxiang 24秒

需求出來了需要解決,后來找到解決辦法了

方法 1:

Sql代碼 收藏代碼

  1. select t.username,(max( t.CREATIONDATE)-min(t.CREATIONDATE))*24*60*60,count(t.username)/2

  2. from ofloginlog t

  3. --where USERNAME = 'zhouhui'

  4. group by t.username

通過分組 統(tǒng)計(jì)出用戶在線時(shí)長(即前后2條記錄作差)

效果圖:

sql 相鄰2條記錄時(shí)間差比較

說明 最后一個(gè)字段我是用來統(tǒng)計(jì) 用戶登錄次數(shù)使用的。

oracle 兩個(gè)時(shí)間相減默認(rèn)的是天數(shù)

oracle 兩個(gè)時(shí)間相減默認(rèn)的是天數(shù)*24 為相差的小時(shí)數(shù)

oracle 兩個(gè)時(shí)間相減默認(rèn)的是天數(shù)*24*60 為相差的分鐘數(shù)

oracle 兩個(gè)時(shí)間相減默認(rèn)的是天數(shù)*24*60*60 為相差的秒數(shù)

方法2:

Sql代碼 收藏代碼

  1. select username, sum(b), count(username) / 2

  2. from (select id, username, (CREATIONDATE - lgtime) * 24 * 60 * 60 as b

  3. from (select t.*,

  4. lag(type) over(partition by username order by CREATIONDATE) lgtype,

  5. lag(CREATIONDATE) over(partition by username order by CREATIONDATE) lgtime

  6. from ofloginlog t))

  7. -- where USERNAME = 'zhouhui')

  8. group by username

實(shí)現(xiàn)效果 一樣 這里不帖了

又復(fù)習(xí)了一下基本的SQL 了 呵呵

20100520 需求有些變更 要求統(tǒng)計(jì)個(gè)數(shù)不是統(tǒng)計(jì)TYPE 1 和0 記錄之和均值,只統(tǒng)計(jì)TYPE=0 的值,

這樣SQL 的分組就不能這樣了,想了一下改進(jìn)了SQL

Sql代碼 收藏代碼

  1. select g.username, g.time, h.count

  2. from (select t.username,

  3. floor((max(t.CREATIONDATE) - min(t.CREATIONDATE)) * 24 * 60 * 60) as time

  4. from ofloginlog t, ofuser b

  5. where 1 = 1

  6. and t.username = b.username

  7. group by t.username) g,

  8. (select t.username, count(t.username) as count

  9. from ofloginlog t

  10. where t.type = '0'

  11. group by t.username) h

  12. where g.username = h.username

  13. order by count desc

查詢結(jié)果


sql 相鄰2條記錄時(shí)間差比較
分析 時(shí)間差是2個(gè)集合之間的差,而后面統(tǒng)計(jì)個(gè)數(shù)只是單獨(dú)限制條件是TYPE=0的記錄數(shù),統(tǒng)計(jì)的數(shù)據(jù)個(gè)數(shù)就不一致,所以很難一個(gè)分組實(shí)現(xiàn),思路是先實(shí)現(xiàn) USERNAME 和TIME 的記錄 在統(tǒng)計(jì)USERNAME和滿足TYPE=0的記錄個(gè)數(shù) 將2個(gè)結(jié)果合并 通過 SELECT XX FROM A B 2個(gè)臨時(shí)表的內(nèi)聯(lián)關(guān)系實(shí)現(xiàn)合并結(jié)果集合

本文講解了sql 相鄰2條記錄時(shí)間差比較 ,更多相關(guān)內(nèi)容請(qǐng)關(guān)注php中文網(wǎng)。

相關(guān)推薦:

.net2.0連接Mysql5數(shù)據(jù)庫配置

cookie 和session 的區(qū)別詳解

以上就是sql 相鄰2條記錄時(shí)間差比較的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。