LEFT OUTER JOIN vs RIGHT OUTER JOIN : Left Outer Join « Table Joins « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » Table Joins » Left Outer Join 
LEFT OUTER JOIN vs RIGHT OUTER JOIN
 
SQL>
SQL> CREATE TABLE project (
  2    pro_id              NUMBER(4),
  3    pro_name            VARCHAR2(40),
  4    budget          NUMBER(9,2),
  5    CONSTRAINT project_pk   PRIMARY KEY (pro_id)
  6  );

Table created.

SQL>
SQL>
SQL> INSERT INTO project(pro_id, pro_name, budget)VALUES (1001'A',12345);

row created.

SQL> INSERT INTO project(pro_id, pro_name, budget)VALUES (1002'ERP',23456);

row created.

SQL> INSERT INTO project(pro_id, pro_name, budget)VALUES (1003'SQL',34567);

row created.

SQL> INSERT INTO project(pro_id, pro_name, budget)VALUES (1004'CRM',45678);

row created.

SQL> INSERT INTO project(pro_id, pro_name, budget)VALUES (1005'VPN',56789);

row created.

SQL>
SQL>
SQL>
SQL> CREATE TABLE server_usage (
  2    pro_id                   NUMBER(4),
  3    emp_id                  NUMBER,
  4    time_log_date                DATE,
  5    hours_logged                 NUMBER(8,2),
  6    dollars_charged              NUMBER(8,2),
  7    CONSTRAINT server_usage_pk  PRIMARY KEY (pro_id, emp_id, time_log_date)
  8  );

Table created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1001,101,to_date('4-Apr-2004','dd-mon-yyyy'),1123,222);

row created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1002,102,to_date('4-Apr-2005','dd-mon-yyyy'),1124,223);

row created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1003,103,to_date('4-Apr-2006','dd-mon-yyyy'),1125,224);

row created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1004,104,to_date('4-Apr-2007','dd-mon-yyyy'),1126,225);

row created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1005,105,to_date('4-Apr-2008','dd-mon-yyyy'),1127,226);

row created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1001,106,to_date('4-Apr-2009','dd-mon-yyyy'),1128,227);

row created.

SQL> INSERT INTO server_usage(pro_id, emp_id, time_log_date, hours_logged, dollars_charged)
  2                    VALUES (1002,107,to_date('4-Apr-2010','dd-mon-yyyy'),1129,228);

row created.

SQL>
SQL>
SQL> SET ECHO ON
SQL> SELECT p.pro_name,  ph.time_log_date, ph.hours_logged
  2  FROM project p LEFT OUTER JOIN server_usage ph
  3       ON p.pro_id = ph.pro_id;
A
04-APR-04         1123

ERP
04-APR-05         1124

SQL
04-APR-06         1125

CRM
04-APR-07         1126

VPN
04-APR-08         1127

A
04-APR-09         1128

ERP
04-APR-10         1129


rows selected.

SQL>
SQL> SELECT p.pro_name,  ph.time_log_date, ph.hours_logged
  2  FROM server_usage ph RIGHT OUTER JOIN project p
  3       ON p.pro_id = ph.pro_id;
A
04-APR-04         1123

ERP
04-APR-05         1124

SQL
04-APR-06         1125

CRM
04-APR-07         1126

VPN
04-APR-08         1127

A
04-APR-09         1128

ERP
04-APR-10         1129


rows selected.

SQL>
SQL> drop table server_usage;

Table dropped.

SQL> drop table project;

Table dropped.

   
  
Related examples in the same category
1. left outer join between employee table and department table
2. Left outer join demo
3. A left outer join:the outer join operator appears on the right of the equality operator
4. LEFT OUTER JOIN tableName ON joined columns
5. Left join with plus sign
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.