UFN_ACADEMICCATALOGDIVISION_GETNAME

Return

Return Type
nvarchar(150)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_ACADEMICCATALOGDIVISION_GETNAME
(
    @ID uniqueidentifier
)
returns nvarchar(150)
as
begin
    declare @NAME nvarchar(150);

    select
        @NAME = NAME
    from
        dbo.ACADEMICCATALOGDIVISION
    where
        ID = @ID;

    return @NAME;
end