标签:
create function 函数名 (@pno int) returns int as begin declare @a int if not exists(select * from person where pno=@pno) set @a=-1 else set @a=1 return @a end 调用函数: use 数据库名 go select dbo.函数名(13250)
标签:
原文地址:http://www.cnblogs.com/zhangzhifeng/p/4626453.html