I am using oracle 10g
and just wanted to know , if the below mentioned thing is possible or not.
I have to select two different values from two different tables and the output needs to be shown as a single row, with 2 columns.
Example scenario:-
Select col1 as A1 from table1 ;
Select clo2 as A2 from table2;
The output should be displayed as
A1. | A2
V1. | V2
Where V1 , V2 are values from the above select queries.