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