T-SQL Tip 6: Two Tables FUSED! HA!
There are a couple different ways to combine data from different tables. The most common method is an INNER JOIN (shorthand is JOIN) on two rows for where they match up. This will give you an intersection of the two tables. It can be used for one-to-one matching or one-to-many. A LEFT and a RIGHT JOIN will give you the same intersection, but also every record that doesn’t match for whichever side of the JOIN expression you are specifying....