What is the easiest way to select data from two tables and rather than join them, have them appear as separate rows. Both tables have similar or matching fields and I want t
select 'test', (select name from employee where id=1) as name, (select name from address where id=2) as address ;