UFN_UIWIDGET_GETTSLONG
Return
Return Type |
---|
bigint |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_UIWIDGET_GETTSLONG(@ID uniqueidentifier)
returns bigint
with execute as caller
as begin
declare @r bigint;
set @r=0;
select @r=TSLONG from dbo.UIWIDGETCATALOG where ID = @ID;
return @r;
end