SQLServer有返回值的標量值函數


USE [ZJPJTX]
GO
/****** Object:  UserDefinedFunction [dbo].[fun_GradeDiff]    Script Date: 05/18/2012 10:57:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[fun_GradeDiff] (@sum decimal(10,4)) 
RETURNS char(1)
AS 
BEGIN
declare @returnValue char(1)
declare @temp table (startMoney decimal,endMoney decimal,flag char(4))
insert into @temp select startMoney,endMoney,flag from PjCorpOutS where isDel='F' and Flag between 'a' and 'g'
declare @countNum int
set @countNum =(select Count(*) from @temp)
if( @countNum>=1)
select @returnValue=flag from @temp where @sum>=startMoney and @sum<=endMoney
else
set @returnValue=''
return @returnValue
END


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM