SELECT <select_list>
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
WHERE B.Key IS NULL
Full image of join
From aticle : http://www.codeproject.com/KB/database/Visual_SQL_Joins.aspx
Related Contents:
- What is the difference between “INNER JOIN” and “OUTER JOIN”?
- How can I do a FULL OUTER JOIN in MySQL?
- INNER JOIN ON vs WHERE clause
- Explicit vs implicit SQL joins
- SQL update from one Table to another based on a ID match
- SQL JOIN: is there a difference between USING, ON or WHERE?
- Can I use CASE statement in a JOIN condition?
- What is the difference between Left, Right, Outer and Inner Joins? [duplicate]
- SQL join: selecting the last records in a one-to-many relationship
- Why isn’t SQL ANSI-92 standard better adopted over ANSI-89?
- Subqueries vs joins
- SQL to LINQ with multiple join, count and left join
- SQL left join vs multiple tables on FROM line?
- SQL Inner-join with 3 tables?
- Difference between Oracle’s plus (+) notation and ansi JOIN notation?
- Difference between left join and right join in SQL Server [duplicate]
- What is the difference between JOIN and UNION?
- Multiple INNER JOIN SQL ACCESS
- Filter Table Before Applying Left Join
- Left Outer Join Not Working?
- JOIN two SELECT statement results
- SQL Joins Vs SQL Subqueries (Performance)?
- FULL OUTER JOIN with SQLite
- SQLite – How do you join tables from different databases?
- Is there something wrong with joins that don’t use the JOIN keyword in SQL or MySQL?
- Difference between natural join and inner join
- Mixing implicit and explicit JOINs
- Natural join in SQL Server
- Why does this SQL code give error 1066 (Not unique table/alias: ‘user’)?
- Venn Diagram for Natural Join
- Are “from Table1 left join Table2” and “from Table2 right join Table1” interchangeable?
- What is the difference between a LATERAL JOIN and a subquery in PostgreSQL?
- Call a set-returning function with an array argument multiple times
- MySQL – Selecting data from multiple tables all with same structure but different data
- Record returned from function has columns concatenated
- In SQL / MySQL, what is the difference between “ON” and “WHERE” in a join statement?
- Is a JOIN faster than a WHERE?
- Is it true that using INNER JOIN after any OUTER JOIN will essentially invalidate the effects of OUTER JOIN?
- Explain JOIN vs. LEFT JOIN and WHERE condition performance suggestion in more detail
- SQL query: Simulating an “AND” over several rows instead of sub-querying
- ORA – 00933 confusion with inner join and “as”
- SQL SELECT from multiple tables
- Merge two rows in SQL
- SQL select join: is it possible to prefix all columns as ‘prefix.*’?
- PostgreSQL JOIN with array type with array elements order, how to implement?
- MySQL: GROUP_CONCAT with LEFT JOIN
- MySQL: “The SELECT would examine more than MAX_JOIN_SIZE rows”
- sql query joins multiple tables – too slow (8 tables)
- Difference between filtering queries in JOIN and WHERE?
- IN vs. JOIN with large rowsets