博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL Server自定义函数
阅读量:5908 次
发布时间:2019-06-19

本文共 2017 字,大约阅读时间需要 6 分钟。

  hot3.png

自定义函数

用户定义自定义函数像内置函数一样返回标量值,也可以将结果集用表格变量返回

用户自定义函数的类型:

标量函数:返回一个标量值

表格值函数{内联表格值函数、多表格值函数}:返回行集(即返回多个值)

1、标量函数

Create function 函数名(参数)

Returns 返回值数据类型

[with {Encryption | Schemabinding }]

[as]

begin

SQL语句(必须有return 变量或值)

End

Schemabinding :将函数绑定到它引用的对象上(注:函数一旦绑定,则不能删除、修改,除非删除绑定)

Create function AvgResult(@svariable varchar(10))  

Returns real  

As  

Begin  

   Declare @avg real  

   Declare @variable varchar(11)  

   Set @variable=@svariable + ‘%’  

   Select @avg=avg(result) from LearnResult_baijiali  

Where svariable like @variable  

Return @avg  

End 

执行用户自定义函数

select 用户名。函数名 as 字段别名

select dbo.AvgResult(‘s0002’) as result  

用户自定义函数返回值可放到局部变量中,用set ,select,exec赋值

declare @avg1 real ,@avg2 real ,@avg3 real  

select @avg1= dbo.AvgResult(‘s0002’)  

set @avg2= dbo.AvgResult(‘s0002’)  

exec @avg3= dbo.AvgResult ‘s0002’  

select @avg1 as avg1 ,@avg2 as avg2 ,@avg3 as avg3

函数引用

create function variable(@svariable varchar(10))  

returns varchar(10)  

as  

begin  

declare @cvariable varchar(10)  

set @svariable = @svariable + ‘%’  

select @cvariable=cvariable from cmessage  

   where cvariable like @svariable  

return @cvariable  

end  

select name from class where cvariable = dbo.variable(‘c001’)  

2、表格值函数

a、 内联表格值函数

格式:

create function 函数名(参数)

returns table

[with {Encryption | Schemabinding }]

as

return(一条SQL语句)

create function tabcmess(@variable varchar(10))

returns table

as

return(select cvariable,svariable from cmessage where cvariable like @cvariable)

b、 多句表格值函数

   create function 函数名(参数)

   returns 表格变量名table (表格变量定义)

   [with {Encryption | Schemabinding }]

as

   begin

    SQL语句

   end

多句表格值函数包含多条SQL语句,至少有一条在表格变量中填上数据值

表格变量格式

returns @变量名 table (column 定义| 约束定义 [,…])

对表格变量中的行可执行select,insert,update,delete , 但select into 和 insert 语句的结果集是从存储过程插入。

Create function tabcmessalot (@variable varchar(10))  

Returns @ctable table(variable varchar(10) null,cname varchar(100) null)  

As  

Begin  

Insert @ctable  

Select cvariable,explain from cmessage  

Where svariable like @variable  

return  

End  

Select * from tabcmessalot(‘s0003’) 

将存储过程转变成函数 ,参阅联机帮助

转载于:https://my.oschina.net/gfcm/blog/483019

你可能感兴趣的文章
mysql存储引擎模式_MySQL存储引擎
查看>>
java 重写system.out_重写System.out.println(String x)方法
查看>>
配置ORACLE 11g绿色版客户端和PLSQL远程连接环境
查看>>
ASP.NET中 DataList(数据列表)的使用前台绑定
查看>>
Linux学习之CentOS(八)--Linux系统的分区概念
查看>>
System.Func<>与System.Action<>
查看>>
asp.net开源CMS推荐
查看>>
csharp skype send message in winform
查看>>
MMORPG 游戏服务器端设计--转载
查看>>
HDFS dfsclient写文件过程 源码分析
查看>>
ubuntu下安装libxml2
查看>>
nginx_lua_waf安装测试
查看>>
WinForm窗体缩放动画
查看>>
JQuery入门(2)
查看>>
linux文件描述符
查看>>
传值引用和调用引用的区别
查看>>
hyper-v 无线网连接
查看>>
Python3.7.1学习(六)RabbitMQ在Windows环境下的安装
查看>>
Windows下memcached的安装配置
查看>>
ubuntu: firefox+flashplay
查看>>