|
|
|
Oracle UNION, INTERSECT, MINUS OPERATORS AND SORTING QUERY RESULT
The UNION [ALL], INTERSECT, MINUS OperatorsYou can combine multiple queries using the set operators UNION, UNION ALL, INTERSECT, and MINUS. All set operators have equal precedence. If a SQL statement contains multiple set operators, Oracle evaluates them from the left to right if no parentheses explicitly specify another order. UNION Example
The following statement
combines the results with the select empno, ename, sal, to_char(null) as “Transfer Date” from emp UNION select empno,ename,to_char(null) as “Sal”,tdate from oldemp; EMPNO ENAME SAL Transfer Date ----- ----- ------ ------------- 101 Sami 5000 102 Smith 11-jul-2000 201 Tamim 10-AUG-2000 209 Ravi 2400 UNION ALL Example
The select empno,ename from emp union all select empno,ename from oldemp; INTERSECT Example
The following statement
combines the results with the SELECT empno FROM emp
INTERSECT
SELECT empno FROM oldemp;
MINUS Example
The following statement
combines results with the SELECT empno FROM emp
MINUS
SELECT empno FROM oldemp;
SORTING QUERY RESULTSTo sort query result you can use ORDER BY clause in SELECT statement.
Sorting Examples. The following query sorts the employees according to ascending order of salaries.
select * from emp order by sal;
The following query sorts the employees according to descending order of salaries.
select * from emp order by sal desc;
The following query sorts the employees according to ascending order of names.
select * from emp order by ename;
The following query first sorts the employees according to ascending order of names. If names are equal then sorts employees on descending order of salaries.
select * from emp order by ename, sal desc;
You can also specify the positions instead of column names. Like in the following query, which shows employees according to ascending order of their names.
select * from emp order by 2;
The following query first sorts the employees according to ascending order of salaries. If salaries are equal then sorts employees on ascending order of names
select * from emp order by 3, 2;
|
|
|