UFN_LOCALE_GETNAME
Return
| Return Type |
|---|
| nvarchar(100) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_LOCALE_GETNAME(@ID uniqueidentifier)
returns nvarchar(100)
with execute as caller
as begin
return (select LOCALE.NAME from dbo.LOCALE where LOCALE.ID = @ID)
end