Help for this page

Select Code to Download


  1. or download this
        table events {
            id    primary key,
    ...
            event    references events(id),
            starts   datetime
        }
    
  2. or download this
        select  e.name, s.starts
          from  events e
    ...
                ) as t
            on  s.event = t.event
           and  s.time  = t.starts