UFN_INTERACTION_ADDITIONALFUNDRAISERS
Returns additional fundraisers for an interaction.
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @INTERACTIONID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_INTERACTION_ADDITIONALFUNDRAISERS(@INTERACTIONID uniqueidentifier)
returns table
as return
select
ID, FUNDRAISERID
from
dbo.INTERACTIONADDITIONALFUNDRAISER
where
INTERACTIONID = @INTERACTIONID;