码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server 的三种用户自定义函数

时间:2014-10-26 21:07:18      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:io   ar   strong   sp   on   cti   bs   as   sql   

create function fun_A()   #标题函数、create function fun_name() returns output_type as begin return value end;
returns int
as
begin
return 1;
end
go

create function fun_B() #多语句用户定义函数、create function fun_name() returns @value table(colum_list) as begin return ; end 
returns @tb table(ID int ,Name nvarchar(8))
as
begin
insert into @tb(ID,Name) values(1,‘111‘),(2,‘222‘);
return;
end
go


create function fun_C() #内联用户定义函数、create function fun_name() returns table as return select......;
returns table
as
return select 1 as A,2 as B,3 as C;
go

SQL Server 的三种用户自定义函数

标签:io   ar   strong   sp   on   cti   bs   as   sql   

原文地址:http://www.cnblogs.com/JiangLe/p/4052674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!