I have two table
table one is scheduletime
id | edition | time | 1 | 1 | 9:23am | 2 | 2 | 10:23am|
select * from (select 'Scheduleed' as Caption, Edition as Edition, Time as Time from scheduletime union all select 'actual' as Caption, Edition as Edition, Time as Time from actualtime) as a order by Edition
Maybe this will help you