文件名称:用存储过程写的主外键编号产生
文件大小:775B
文件格式:TXT
更新时间:2011-11-16 05:18:43
编号,存储过程
用存储过程写的产生的编号 begin set @s = '0000' +cast( @newno as varchar(30)) set @s = @up_LoginCode + Right(@s,4) select @hasRecord =count(*) from departinfo where Depart_LoginCode=@s and Depart_TopDepart_ID= @UpDepartID if(@hasRecord=0) break else set @newno=@newno+1 end update departinfo set Depart_LoginCode=@s where Depart_ID=@DepartID GO