UFN_GRADELEVELABBREVIATION_GETNAME
Return
Return Type |
---|
nvarchar(50) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_GRADELEVELABBREVIATION_GETNAME(@ID uniqueidentifier) returns nvarchar(50)
as
begin
declare @s nvarchar(10);
select @s = dbo.GRADELEVEL.ABBREVIATION from dbo.GRADELEVEL where dbo.GRADELEVEL.ID = @ID;
return @s;
end