函数的创建及使用时的注意事项

函数的创建及使用时的注意事项,第1张

概述函数创建及使用时的注意事项 --以下是sql中函数的创建及使用方法 create function test(@Num varchar(20))--@Num 参数 returns varchar(50) --返回值类型 as begin declare @MSG varchar(20) if(@Num =1)     select @MSG ='正确' else     select @MSG

函数的创建及使用时的注意事项

--以下是sql中函数的创建及使用方法

create function test(@Num varchar(20))--@Num 参数

returns varchar(50) --返回值类型

as

begin

declare @MSG varchar(20)

if(@Num =1)

    select @MSG ='正确'

else

    select @MSG ='错误'

return @MSG

end

--调用函数

select dbo.test(2)—-这里的表名一定得加上dbo不加就报错

 

--创建返回table类型的函数

create function GetAllStudents()

returns table

as

return (select * from student)

--调用函数

select * from GetAllStudents()—-这里的表名可加可不加dbo

总结

以上是内存溢出为你收集整理的函数的创建及使用时的注意事项全部内容,希望文章能够帮你解决函数的创建及使用时的注意事项所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1182278.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存