OUTER EXCLUDING JOIN Homework Help
This query will return all of the records in the left table (tableX) and all of the records in the right table (tableY) that do not match. I have yet to have a need for using this type of Join, but all of the others, I use quite frequently.
SELECT "select_list"
FROM TableX X
FULL OUTER JOIN TableY Y
ON X.Key = Y.Key
WHERE X.Key IS NULL
OR Y.Key IS NULL
EXAMPLE OF OUTER EXCLUDING JOIN :
SELECT X.PK, X.Value,
Y.Value, Y.PK
FROM TableX X
FULL OUTER JOIN TableY Y
ON X.PK = Y.PK
WHERE X.PK IS NULL
OR Y.PK IS NULL
Different type of SQL JOIN
The types of JOIN you can use and the differences between them,
Topics in database
- Authorization: SQL Recursion
- Big Data
- Database Languages Assignment Help
- Database Design Help
- Database System Architectures Design
- Entity Relationship Model Understanding
- Higher-Level Design: UML Diagram Help
- Implementation Of Atomicity And Durability
- Object-Based Databases Homework Help
- Oracle 10g/11g
- Parallel And Distributed Databases
- Query Optimization Technique
- Relational Databases Homework Help
- Serializability And Recoverability
- SQL Join
- SQL Queries And Updates
- XML And Relational Algebra Homework Help
- XML Queries And Transformations
- Data Mining
- Oracle Data warehouse
- Relational Model Online Help
- SQL And Advanced SQL Learning Help