This can be done by union / union all operation,
but the data type of Age column of these tables seems different.
so if you try to union all these tables you get an error saying;
Conversion failed when converting the varchar value 'two' to data type int
So convert the data type of age column of table 1 to varchar before union them
select id, age from (
select id, convert(varchar(20), age) as age from tbl1
union all
select id, age from tbl2
) as x
order by age
If you are OK with duplicate data use union all else union (union have additional overhead of removing duplicate data)
Note: order by age order age lexicographically