Besonderhede van voorbeeld: 9185652667145356177

Metadata

Author: WikiMatrix

Data

English[en]
Example of a full outer join (the OUTER keyword is optional): SELECT * FROM employee FULL OUTER JOIN department ON employee.DepartmentID = department.DepartmentID; Some database systems do not support the full outer join functionality directly, but they can emulate it through the use of an inner join and UNION ALL selects of the "single table rows" from left and right tables respectively.
Korean[ko]
완전 외부 조인의 예는 다음과 같다: SELECT * FROM employee FULL OUTER JOIN department ON employee.DepartmentID = department.DepartmentID; 일부 데이터베이스 시스템은 완전 외부 조인 기능을 직접적으로 지원하지 않지만, 좌우 테이블에서 각각 단일 테이블 열의 내부 조인과 UNION ALL select의 사용을 통해 비슷하게 구현할 수 있다.

History

Your action: