创建自定义函数:use 数据库名gocreate function 函数名(@pno int)returns intasbegin declare @a int if not exists(select * from person where pno=@pno) set @a=-1 else set @a=1 return @aend调用函数:use 数据库名goselect dbo.函数名(13250)