I have two table
table one is scheduletime
id | edition | time | 1 | 1 | 9:23am | 2 | 2 | 10:23am|
You can use :-
select * from( select 'Scheduleed' as Caption ,edition,time from scheduletime union all select 'actual' as Caption,edition,time from actualtime )x