UFN_SELECTION_CONSTITUENT_MAPLE
Returns all CONSTITUENT IDs for constituents with a keyname like 'Maple%' if they exist in the database.
Return
Return Type |
---|
table |
Definition
Copy
CREATE function dbo.UFN_SELECTION_CONSTITUENT_MAPLE
(
)
returns table
as return
select
CONSTITUENT.*
from dbo.CONSTITUENT
where KEYNAME like 'Maple%'