UFN_CONSTITUENT_GETCONSTITUENCIES_FUNDRAISER
Returns all fundraiser constituencies for a constituent.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@CONSTITUENTID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_CONSTITUENT_GETCONSTITUENCIES_FUNDRAISER(@CONSTITUENTID uniqueidentifier)
returns table
as
return
(
select
FUNDRAISERDATERANGE.ID,
FUNDRAISERDATERANGE.DATEFROM,
FUNDRAISERDATERANGE.DATETO
from
dbo.FUNDRAISERDATERANGE
where
FUNDRAISERDATERANGE.CONSTITUENTID = @CONSTITUENTID
);