UFN_EVENTPREFERENCE_GETPREFERENCES
Returns all preferences for a given event preference group.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EVENTPREFERENCEGROUPID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_EVENTPREFERENCE_GETPREFERENCES(@EVENTPREFERENCEGROUPID uniqueidentifier)
returns table
as
return
(
select
ID, NAME, SEQUENCE
from
dbo.EVENTPREFERENCE
where
EVENTPREFERENCEGROUPID = @EVENTPREFERENCEGROUPID
)