UFN_FAFDOCUMENT_GETNAME
Return
| Return Type |
|---|
| nvarchar(50) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | int | IN |
Definition
Copy
create function dbo.UFN_FAFDOCUMENT_GETNAME(@ID int) returns nvarchar(50)
as
begin
declare @s nvarchar(50);
select @s = NAME from dbo.DocUploadFiles where ID = @ID;
return @s;
end