UFN_BATCH_GETOVERALLMATCHTHRESHOLD
Return
| Return Type |
|---|
| decimal(20, 4) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_BATCH_GETOVERALLMATCHTHRESHOLD
(
@ID uniqueidentifier
)
returns decimal(20, 4)
with execute as caller
as
begin
declare @threshold decimal(20, 4);
select @threshold = OVERALLMATCHTHRESHOLD from dbo.BATCH where ID = @ID;
return @threshold;
end