SQL Server创建和使用临时表(转)
http://blog.csdn.net/atian2009/article/details/6823129Demo1:
-- 根据 questionID 查询 pName
create FUNCTION [dbo].[getPointNameByQuestionID](@questionID INT)
RETURNs varchar(256)
AS
BEGIN
DECLARE @pName VARCHAR(256)
SELECT DISTINCT TOP 1 @pName = p.pointName
FROM EXPORT_POINT_QUESTION_DHY pq
LEFT JOIN QZ_POINT p ON pq.pointID = p.pointID
WHERE pq.questionID = @questionID
RETURN ISNULL(@pName , '其他' )
END
GO
测试调用:
select dbo.getPointNameByQuestionID(123);
Demo 2 :
-----比较两个值大小,返回小的----
create FUNCTION [dbo].[getMin]
(
@num1 int,
@num2 int
)
RETURNS int
as
BEGIN
declare @num int
if @num1>@num2
begin
set @num=@num2
end
else
begin
set @num=@num1
end
return @num
END
GO
测试调用: -----比较两个值大小,返回小的----
SELECT dbo.getMin('1','5');
Demo 3:
--计算一段时间内工作的天数
create function f_workday(
-- 参数
@date_begin datetime, --计算开始日期
@date_end datetime ) --计算结束日期
returns int -- 返回值数据类型
as
begin
declare @weeks int, -- 声明变量
@workday int
-- SQL语句(必须有return 变量或值)
---计算整周的工作天数
select @weeks=(datediff (day ,@date_begin, @date_end)+1)/7, -- 计算开始和结束日期的之间的周数(完整的周)
@workday=@weeks*5, --整周的工作天数----
@date_begin=dateadd(day,@weeks*7,@date_begin) --最後一个不完整的周的工作天数
while @date_begin<=@date_end
begin
select @workday = case when (@@datefirst+datepart(weekday,@date_begin)-1)%7 between 1 and 5 then @workday+1
else @workday+1 end, @date_begin =@date_begin+1
end
return (@workday)
end
测试调用:
select dbo.f_workday('2014-06-01','2014-07-30')
(转)SQL Server自定义函数
自定义函数
用户定义自定义函数像内置函数一样返回标量值,也可以将结果集用表格变量返回
用户自定义函数的类型:
标量函数:返回一个标量值
表格值函数{内联表格值函数、多表格值函数}:返回行集(即返回多个值)
1、标量函数
Create function 函数名(参数)
Returns 返回值数据类型
[with {Encryption | Schemabinding }]
[as]
begin
SQL语句(必须有return 变量或值)
End
Schemabinding :将函数绑定到它引用的对象上(注:函数一旦绑定,则不能删除、修改,除非删除绑定)
Create function AvgResult(@scode varchar(10))
Returns real
As
Begin
Declare @avg real
Declare @code varchar(11)
Set @code=@scode + ‘%’
Select @avg=avg(result) from LearnResult_baijiali
Where scode like @code
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 code(@scode varchar(10))
returns varchar(10)
as
begin
declare @ccode varchar(10)
set @scode = @scode + ‘%’
select @ccode=ccode from cmessage
where ccode like @scode
return @ccode
end
select name from class where ccode = dbo.code(‘c001’)
2、表格值函数
a、 内联表格值函数
格式:
create function 函数名(参数)
returns table
[with {Encryption | Schemabinding }]
as
return(一条SQL语句)
create function tabcmess(@code varchar(10))
returns table
as
return(select ccode,scode from cmessage where ccode like @ccode)
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 (@code varchar(10))
Returns @ctable table(code varchar(10) null,cname varchar(100) null)
As
Begin
Insert @ctable
Select ccode,explain from cmessage
Where scode like @code
return
End
Select * from tabcmessalot(‘s0003’)
将存储过程转变成函数 ,参阅联机帮助
转自 http://hi.baidu.com/datachina/blog/item/801def0366c4e7ea09fa9344.html