[sql server] 如何得到連續序號

來源:互聯網
上載者:User

--SQL2000

 

--1

select number from master..spt_values where type='p' --0-255

 

--2
select top 10000 id=identity(int,1,1) into #t from sysobjects,syscolumns 

 

--SQL2005產生系列號(行號)兩種方式 
--1.用CTE遞迴測試  
;WITH t AS   
(   
    SELECT 1 AS num  
    UNION ALL  
    SELECT num+1   
    FROM t  
    WHERE num<100000  
)  
SELECT * FROM t   
OPTION(MAXRECURSION 0)
 
--2.用通過系統資料表產生行號測試  
SELECT TOP 100000 num=ROW_NUMBER()OVER(ORDER BY GETDATE())  
FROM syscolumns a,syscolumns b  

--3.產生一個數字表,效率非常高
create function dbo.fn_nums(@n as bigint)
returns table
as
return
  with
    t1 as (select 1 as c union all select 1),
    t2 as (select 1 as c from t1 as a,t1 as b),
    t3 as (select 1 as c from t2 as a,t2 as b),
    t4 as (select 1 as c from t3 as a,t3 as b),
    t5 as (select 1 as c from t4 as a,t4 as b),
    t6 as (select 1 as c from t5 as a,t5 as b),
    t7 as (select row_number() over(order by c) as n from t6)
    select n from t7 where n<@n;
go
--測試

select * from dbo.fn_nums(1000)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.