UFN_CYCLEDAY_GETDESC
Return
Return Type |
---|
nvarchar(60) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_CYCLEDAY_GETDESC
(
@ID uniqueidentifier
)
returns nvarchar(60)
as
begin
declare @DESC nvarchar(60);
select
@DESC = DESCRIPTION
from
dbo.CYCLEDAY
where
ID = @ID;
return @DESC;
end