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

Sql Create Function简单例子

时间:2014-12-26 11:01:16      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

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)--传递参数2
返回结果:错误

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

create function GetTableDetails()
returns TABLE
as 
    return (select * from sales )



--调用函数
select * from dbo.GetTableDetails()--dbo.需要注意
返回sales表的所有记录。

Sql Create Function简单例子

标签:

原文地址:http://www.cnblogs.com/zhongxinWang/p/4186180.html

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