本文介绍了不能使用master..spt_values的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好朋友,

我想为MLM站点生成图钉,为此,我想使用master..spt_values表,但是对此没有任何想法.

谁能建议我,如何使用spt_values或与此有关的任何教程自动生成pin.

Hello Friends,

I want to generate pin for an MLM site, for this i want to use master..spt_values table, but dont have any idea about it.

can any one suggest me, how to auto-generate pin using spt_values or any tutorial for this.

推荐答案


create proc SP_GeneratePin

@kit nvarchar(6)
.
.
.
as

begin
insert into yourtable(columns,..,..) values (param1,param2)

declare @iden
@iden=@@identity

if(@kit='scalar')

update yourtable table pin= 'sc' + convert(char,@iden) where youridentityid=@iden

else if(@kit='scalar')

update yourtable table pin= 'abc' + convert(char,,@iden) where youridentityid=@iden

end




让我知道是否遇到任何错误




let me know if there is any error come across



这篇关于不能使用master..spt_values的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 22:58