SQLServer 分組查詢相鄰兩條記錄的時間差

來源:互聯網
上載者:User

標籤:style   blog   http   color   ar   os   sp   資料   div   

原文:SQLServer 分組查詢相鄰兩條記錄的時間差

首先,我們通過資料庫中表的兩條記錄來引出問題,如

以上為一個記錄操作記錄的表資料。OrderID為自增長列,後面依次為操作類型,操作時間,操作人。

現在的問題是:要求篩選出資料庫中從“接收”到“送出”的時間差超過2天的全部記錄。即如兩筆單據中,紅色框既是要篩選出的,綠色框為正常過濾的。

為了定位相鄰記錄,方法為給查詢語句的返回記錄加個自動編號列放入暫存資料表中,再對暫存資料表進行操作。

View Code
--1.首先查出表中符合條件的所有資訊select IDENTITY(int,1,1) as OIndex,* into #temp1 from 操作記錄表where OrderID in (select OrderID from 單據表 where OrderNo like ‘APP%‘) order by OrderID,OperateDate--2.簽核時間Delay在2~7天之內select a.OrderID,a.OperateUser,a.OperateName into #temp2 from #temp1 a inner join #temp1 b on a.OrderID=b.OrderID and a.OperateUser=b.OperateUserand a.OperateType=‘Receive‘ and b.OperateType=‘Send‘ and b.OIndex = a.OIndex+1where datediff(dd,a.operatedate,b.operatedate)>2 and datediff(dd,a.operatedate,b.operatedate)<=7 and a.operatedate>=‘2012-06-10‘group by a.OrderID,a.OperateUser,a.OperateNameorder by a.OrderID--3.異常單據和異常操作人員資訊select * from #temp2

可以看出,關鍵在分組查詢後對資料的比對。

SQLServer 分組查詢相鄰兩條記錄的時間差

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.