Very basic sql question. I wan't to display the output of the following query as one table instead of two:
select players.name
from players
inner join teams
on players.team = teams.name
where teams.staysat = 'Ambassador'
and teams.checkin is not null;
select fans.name
from fans
where fans.staysat = 'Ambassador'
and teams.checkin is not null;
How can a rewrite this so the players name and fans name are printed as one continuous list?