UFN_EVENTLODGINGLOCATION_GETNAME
Return
Return Type |
---|
nvarchar(150) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_EVENTLODGINGLOCATION_GETNAME(@ID uniqueidentifier) returns nvarchar(150)
as
begin
declare @NAME nvarchar(150);
select @NAME = NAME from dbo.EVENTLODGINGLOCATION where ID = @ID;
return @NAME;
end