UFN_BATCHAUCTIONITEMCONSTITUENT_ISGROUP
This function determines whether or not a given auction item constituent is a group
Return
| Return Type |
|---|
| bit |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @BATCHAUCTIONITEMCONSTITUENTID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_BATCHAUCTIONITEMCONSTITUENT_ISGROUP(@BATCHAUCTIONITEMCONSTITUENTID uniqueidentifier)
returns bit
as
begin
declare @result bit
select @result = ISGROUP from BATCHAUCTIONITEMCONSTITUENT where ID = @BATCHAUCTIONITEMCONSTITUENTID;
return @result;
end