UFN_CONSTITUENT_GETNICKNAME_TVF

Find the Nickname for a given constituent

Return

Return Type
table

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTID uniqueidentifier IN

Definition

Copy


CREATE function dbo.UFN_CONSTITUENT_GETNICKNAME_TVF(@CONSTITUENTID uniqueidentifier)
returns table
as 
return
(
    select NICKNAME as VALUE
    from dbo.CONSTITUENT with(nolock)
    where ID = @CONSTITUENTID
)