UFN_EVENTSEATINGSECTION_GETSUBSECTIONS

Returns all sub-sections for a given event seating section.

Return

Return Type
table

Parameters

Parameter Parameter Type Mode Description
@EVENTSEATINGSECTIONID uniqueidentifier IN

Definition

Copy


            create function dbo.UFN_EVENTSEATINGSECTION_GETSUBSECTIONS(@EVENTSEATINGSECTIONID uniqueidentifier)
            returns table
            as
            return
            (
                select 
                    ID, 
                    NAME, 
                    SEQUENCE
                from 
                    dbo.EVENTSEATINGSUBSECTION
                where 
                    EVENTSEATINGSUBSECTION.EVENTSEATINGSECTIONID = @EVENTSEATINGSECTIONID
            )