table1: table2
studentname StudentAge
stuart 18
У меня есть следующие запросы, такие как 1)
select studentname as sname from table1;
sname
Stuart
2)
select StudentAge as age from table2;
age
18
Я хочу отобразить результаты запроса в таблице, имеющей два столбца:
category Values
sname Stuart
age 18