SQLServer 表值函式與標量值函式 定義方式與呼叫區別
SQLServer 表值函式與標量值函式 定義方式與呼叫區別
轉載自:http://blog.sina.com.cn/s/blog_648861b901012ay2.htmlSQLServer 表值函式與標量值函式 定義方式與呼叫區別
寫sql儲存過程經常需要呼叫一些函式來使處理過程更加合理,也可以使函式複用性更強,不過在寫sql函式的時候可能會發現,有些函式是在表值函式下寫的有些是在標量值下寫的,區別是表值函式只能返回一個表,標量值函式可以返回基型別。
標量值函式建立:
Create Function [dbo].[GoosWidth]
(
@GoodsCode varchar(20)
)
Returns float
Begin
Declare @Value float
Select @Value = GoodsWidth From Master_Goods Where GoodsCode = @GoodsCode
Return(@Value)
End
表值函式建立:
Create Function [dbo].[GetAllGoods]
()
Returns Table
As
Return(Select * From [Master_Goods])
建立一個自定義樣式的標量函式:
Create Function [dbo].[GetMyStyleDate](@Date DateTime)
Returns nvarchar(20)
Begin
Declare @ReturnValue nvarchar(20)
Set @ReturnValue = '今天是' + convert(nvarchar(4),datepart(year,@Date)) + '年'+ convert(nvarchar(2),datepart(month,@Date)) + '月'+ convert(nvarchar(2),datepart(day,@Date)) + '日'
return @ReturnValue
End