1.

How Full Outer Join Is Implemented Bodi? Explain With Examples?

Answer»

FULL Outer JOIN is implemented by using SQL Transformation and WRITING custom query.

Following example describes SQL Transformation to implement Full Outer Join:

SELECT emp.*, dept.deptname, dept.deptno DNO, dept.location from scott.employee emp 

FULL OUTER JOIN

scott.department dept on (emp.deptno = dept.deptno) ;

Following example illustrates custom query to implement Full Outer Join:

  • Drag EMPLOYEE, DEPARTMENT tables as src.
  • Place the query transform for performing the Left Outer Join.
  • Place one more query transform for performing the Right Outer Join.
  • Merge and load them into the target.

Full Outer Join is implemented by using SQL Transformation and writing custom query.

Following example describes SQL Transformation to implement Full Outer Join:

select emp.*, dept.deptname, dept.deptno dno, dept.location from scott.employee emp 

FULL OUTER JOIN

scott.department dept on (emp.deptno = dept.deptno) ;

Following example illustrates custom query to implement Full Outer Join:



Discussion

No Comment Found