I have two table with an column 'minute'. These table are joined with a INNER JOIN. Now I want to print out all the records from both tables sorted on both the columns 'minute'
Example
Table 1: name - minute
John - 1
Marc - 3
Table 2: name - minute
Gareth - 2
Joe - 3
Output:
John, Gareth, Marc, Joe
The two tables have to remain two separate tables.