Pages

Tuesday 19 February 2013

SQL SERVER – Introduction to JOINs – Basic of JOINs

LEFT OUTER JOIN

This join returns all the rows from the left table in conjunction with the matching rows from the right table. If there are no columns matching in the right table, it returns NULL values.


SELECT t1.*,t2.*
FROM Table1 t1
LEFT JOIN Table2 t2 ON t1.ID = t2.ID

No comments:

Post a Comment