Oracle Union All
Oracle Database Basic Course
In Oracle, the UNION ALL operator is used to combine the result sets of 2 or more SELECT statements. It is different from UNION operator in a way that it does not remove duplicate rows between the various SELECT statements. It returns all of the rows.
Each SELECT statement within the UNION ALL must have the same number of fields in the result sets with similar data types.
Difference between UNION and UNION ALL operators
UNION operator removes duplicate rows while UNION ALL operator does not remove duplicate rows.Syntax
SELECT expression1, expression2, ... expression_n FROM table1 WHERE conditions UNION ALL SELECT expression1, expression2, ... expression_n FROM table2 WHERE conditions;
Parameters
1) expression1, expression2, expression_n: It specifies the columns that you want to retrieve. Number of expressions must be same in both SELECT statements.
2) table1, table2: It specifies the table name that you want to retrieve records from.
3) conditions: It specifies the conditions that must be fulfilled for the records to be selected.

- Database Overview
- What Is Oracle Database
- History of Oracle Database
- Why Oracle Database
- Features of Oracle Database
- Oracle Vs. SQL Server: Key Differences
- Oracle Vs. MySQL Server: Key Differences
- Oracle Vs. NoSQL
- Install Oracle Database Server
- Oracle Database Sample Schema
- Execute Sample Database
- Connect to SQL Developer and Other SQL Editor