UFN_GRANT_TITLE
Return
| Return Type |
|---|
| nvarchar(257) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_GRANT_TITLE
(
@ID uniqueidentifier
)
returns nvarchar(257)
with execute as caller
as begin
return
(
select
GRANTS.TITLE
from
dbo.GRANTS
where
GRANTS.ID = @ID
);
end