Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Write a Query with a Right Outer Join
How To Write a Query with a Right Outer Join? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements
✍: FYIcenter.com
If you want to query from two tables with a right outer join, you can use the RIGHT OUTER JOIN ... ON clause in the FROM clause. The following query returns output with a right outer join from two tables: departments and employees. The join condition is that the manager ID in the departments table equals to the employee ID in the employees table:
SQL> set NULL 'NULL' SQL> SELECT d.department_name, e.first_name, e.last_name 2 FROM departments d RIGHT OUTER JOIN employees e 3 ON d.manager_id = e.employee_id; DEPARTMENT_NAME FIRST_NAME LAST_NAME -------------------- -------------------- --------------- Administration Jennifer Whalen Marketing Michael Hartstein Purchasing Den Raphaely Human Resources Susan Mavris Shipping Adam Fripp IT Alexander Hunold ...... NULL Clara Vishney NULL Jason Mallin NULL Hazel Philtanker NULL Nanette Cambrault NULL Alana Walsh NULL Karen Partners NULL Bruce Ernst ......
Note that a right outer join may return extra rows from the second (right) table that do not satisfy the join condition. In those extra rows, columns from the first (left) table will be given null values.
The extra rows returned from the right outer join in this example represents employees that are not assigned as managers in the departments table.
2007-04-19, 7104👍, 0💬
Popular Posts:
What does XmlValidatingReader class do? XmlTextReader class does not validate the contents of an XML...
What is the FP per day in your current company?
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...
How can JavaScript make a Web site easier to use? That is, are there certain JavaScript techniques t...