UFN_EVENT_GETDESIGNATIONS
Returns designations for a given EVENT.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EVENTID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_EVENT_GETDESIGNATIONS
(
@EVENTID uniqueidentifier
)
returns table
as
return
(
select
ID,
DESIGNATIONID,
[DEFAULT]
from
dbo.EVENTDESIGNATION
where
EVENTID = @EVENTID
)