What is the difference between CROSS JOIN and FULL OUTER JOIN in SQL Server?
Are they the same, or not? Please explain. When would one use either of these?
|
What is the difference between CROSS JOIN and FULL OUTER JOIN in SQL Server? Are they the same, or not? Please explain. When would one use either of these? |
||||
|
|
|
A cross join produces a cartesian product between the two tables, returning all possible combinations of all rows. It has no A This wikipedia article explains the various types of joins with examples of output given a sample set of tables. |
|||
|
|
|
Cross join :Cross Joins produce results that consist of every combination of rows from two or more tables. That means if table A has 3 rows and table B has 2 rows, a CROSS JOIN will result in 6 rows. There is no relationship established between the two tables – you literally just produce every possible combination. Full outer Join : A FULL OUTER JOIN is neither "left" nor "right"— it's both! It includes all the rows from both of the tables or result sets participating in the JOIN. When no matching rows exist for rows on the "left" side of the JOIN, you see Null values from the result set on the "right." Conversely, when no matching rows exist for rows on the "right" side of the JOIN, you see Null values from the result set on the "left." |
|||
|
|
|
Cross Join: http://www.dba-oracle.com/t_garmany_9_sql_cross_join.htm TLDR: Generates a all possible combinations between 2 tables (Carthesian product) (Full) Outer Join : http://www.w3schools.com/Sql/sql_join_full.asp TLDR: Returns every row in bot tables and matches those results that have the same values |
|||
|
|
|
I'd like to add one important aspect to other answers, which actually explained this topic to me in the best way: If 2 joined tables contain M and N rows, then cross join will always produce (M x N) rows, but full outer join will produce from MAX(M,N) to (M + N) rows (depending on how many rows actually match "on" predicate). |
|||
|
|
One thing that might not always be obvious to some is that a cross join with an empty table (or result set) results in empty table (M x N; hence M x 0 = 0) A full outer join will always have rows unless both M and N are 0. |
|||
|
|
|
Hi they are the same concepts apart from the NULL value returned. See below:
select * from @table1 t1 full outer join @table2 t2 on t1.col1 = t2.col1 /* RESULT col1 col2 col1 col2 NULL NULL 10 101 2 22 2 202 1 11 NULL NULL (3 row(s) affected) */ select * from @table1 t1 cross join @table2 t2 /* RESULT col1 col2 col1 col2 1 11 10 101 2 22 10 101 1 11 2 202 2 22 2 202 (4 row(s) affected) */ |
|||
|
|