UFN_SELECTION_CONSTITUENT_BOARDMEMBERS

Gets all constituent who have ever been board members, regardless of current board member status.

Return

Return Type
table

Definition

Copy


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