文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>SQL自增主键函数

SQL自增主键函数

时间:2010-11-05  来源:星曜

比如

CRM00001

CRM00002

CRM00003

 

 

create   table   IntKey(KeyChar   char(10)) 
go 
create   function   GetKey() 
returns   char(10) 
as 
begin 
declare   @KeyValue   int 
declare   @KeyReturn   varchar(20) 
set   @KeyValue   =   cast(isnull((select   max(KeyChar)   from   IntKey),0)   as   int)   +   1 
set   @KeyReturn   =   '000000000 '   +   ltrim(str(@KeyValue)) 
return   right(@KeyReturn,10) 
end 

go 

declare   @i   int 
set   @i   =   0 
while   @i   <   100 
begin 
insert   into   IntKey(KeyChar) 
select   dbo.GetKey() 
set   @i   =   @i   +   1 
end 
select   *   from   IntKey 
go 
drop   function   GetKey 
drop   table   IntKey

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载