SQL Server自增ID值不連續記錄的實現方法

來源:互聯網
上載者:User

在很多的時候,我們會在資料庫的表中設定一個欄位:ID,這個ID是一個IDENTITY,也就是說這是一個自增ID。當並發量很大並且這個欄位不是主鍵的時候,就有可能會讓這個值重複;或者在某些情況例如插入資料的時候出錯,或者是使用者使用了Delete刪除了記錄)下會讓ID值不是連續的,比如1,2,3,5,6,7,10,那麼在中間就斷了幾個資料,那麼我們希望能在資料中找出這些相關的記錄,我希望找出的記錄是3,5,7,10,通過這些記錄可以查看這些記錄的規律來分析或者統計;又或者我需要知道那些ID值是沒有的:4,8,9。

解決辦法的核心思想是:擷取到目前記錄的下一條記錄的ID值,再判斷這兩個ID值是否差值為1,如果不為1那就表示資料不連續了。

類似文章有:

1. 簡單但有用的SQL指令碼Part6:特殊需要的行轉列

2. 簡單但有用的SQL指令碼Part9:記錄往上回填資訊

執行下面的語句產生測試表和測試記錄

--產生測試資料

 
  1. if exists (select * from sysobjects 
  2. where id = OBJECT_ID('[t_IDNotContinuous]') 
  3. and OBJECTPROPERTY(id, 'IsUserTable') = 1)   
  4. DROP TABLE [t_IDNotContinuous]  
  5.  
  6. CREATE TABLE [t_IDNotContinuous] (  
  7. [ID] [int]  IDENTITY (1, 1)  NOT NULL,  
  8. [ValuesString] [nchar]  (10) NULL)  
  9.  
  10. SET IDENTITY_INSERT [t_IDNotContinuous] ON 
  11.  
  12. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 1,'test')  
  13. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 2,'test')  
  14. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 3,'test')  
  15. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 5,'test')  
  16. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 6,'test')  
  17. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 7,'test')  
  18. INSERT [t_IDNotContinuous] ([ID],[ValuesString]) VALUES ( 10,'test')  
  19.  
  20. SET IDENTITY_INSERT [t_IDNotContinuous] OFF 
  21.  
  22. select * from [t_IDNotContinuous] 

 

圖1:測試表) 

--拿到目前記錄的下一個記錄進行串連

 
  1. select ID,new_ID  
  2. into [t_IDNotContinuous_temp]  
  3. from (  
  4. select ID,new_ID = (  
  5. select top 1 ID from [t_IDNotContinuous]  
  6. where ID=(select min(ID) from [t_IDNotContinuous] where ID>a.ID)  
  7. )  
  8. from [t_IDNotContinuous] as a  
  9. ) as b  
  10.  
  11. select * from [t_IDNotContinuous_temp] 

圖2:錯位記錄) 

--不連續的前前後後記錄

 
  1. select *   
  2. from [t_IDNotContinuous_temp]  
  3. where ID <> new_ID - 1 

--查詢原始記錄

 
  1. select a.* from [t_IDNotContinuous] as a  
  2. inner join (select *   
  3. from [t_IDNotContinuous_temp]  
  4. where ID <> new_ID - 1) as b  
  5. on a.ID >= b.ID and a.ID <=b.new_ID  
  6. order by a.ID 

圖3:效果) 

原文標題:尋找SQL Server 自增ID值不連續記錄

連結:http://www.cnblogs.com/gaizai/archive/2010/08/30/1812717.html

相關文章

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.