UFN_GIFTFEECONSTITUENCY_SYSTEMDEFINEDUNIQUE
Validates that system defined values are unique for the gift fee constituency table.
Return
Return Type |
---|
bit |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@SYSTEMCONSTITUENCYID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_GIFTFEECONSTITUENCY_SYSTEMDEFINEDUNIQUE (@SYSTEMCONSTITUENCYID uniqueidentifier)
returns bit
with execute as caller
as
begin
declare @r as int;
select @r = count(*) from dbo.GIFTFEECONSTITUENCY where SYSTEMCONSTITUENCYID = @SYSTEMCONSTITUENCYID;
if @r <= 1 --No others
return 1
return 0
end