InterviewSolution
| 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:
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: |
|