USP_SIMPLEDATALIST_EVENTLOCATIONS

Returns a list of event locations.

Definition

Copy


create procedure dbo.USP_SIMPLEDATALIST_EVENTLOCATIONS as
                    select
                        ID as VALUE,
                        NAME as LABEL
                    from
                        dbo.EVENTLOCATION
                    order by
                        EVENTLOCATION.NAME;