UFN_SELECTION_CONSTITUENT_FUNDRAISERS

Gets all constituents who have ever been fundraisers, regardless of current fundraiser status.

Return

Return Type
table

Definition

Copy


            CREATE function dbo.UFN_SELECTION_CONSTITUENT_FUNDRAISERS()
            returns table
            as return
                select distinct
                    FUNDRAISERDATERANGE.[CONSTITUENTID] as [ID]
                from
                    dbo.FUNDRAISERDATERANGE;