Answers for "how to include two columns of same name from different tables in one view in sqldeveloper"

SQL
1

sql view where tables have same column name combine results

SELECT table1.Column1, table1.Column2
FROM table1

UNION

SELECT table2.Column1, table2.Column2
FROM table2
Posted by: Guest on October-06-2020

Code answers related to "how to include two columns of same name from different tables in one view in sqldeveloper"

Code answers related to "SQL"

Browse Popular Code Answers by Language