UFN_BENEFIT_GETNAME
Return
| Return Type |
|---|
| nvarchar(100) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_BENEFIT_GETNAME(@ID uniqueidentifier) returns nvarchar(100) WITH EXECUTE as CALLER
as
begin
declare @NAME nvarchar(100)
select @NAME = NAME from dbo.BENEFIT where ID = @ID
return @NAME
end