我正在使用oracle 10g
并且只是想知道,如果下面提到的事情是否可能。
我必须从两个不同的表中选择两个不同的值,输出需要显示为一行,有两列。
示例场景: -
Select col1 as A1 from table1 ;
Select clo2 as A2 from table2;
输出应显示为
A1. | A2
V1. | V2
其中V1,V2是上述选择查询的值。
答案 0 :(得分:-1)
正如@Lalit Kumar B所说:
Select col1 as A1 from table1
UNION ALL
Select clo2 as A2 from table2
请记住,您必须从每个表格中选择相同数量的列。