UFN_CORECURRICULUM_GETNAME
Return
| Return Type |
|---|
| nvarchar(60) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_CORECURRICULUM_GETNAME
(
@ID uniqueidentifier
)
returns nvarchar(60)
as
begin
declare @NAME nvarchar(60);
select @NAME = CORECURRICULUM.NAME
from dbo.CORECURRICULUM
where CORECURRICULUM.[ID] = @ID;
return @NAME;
end