I'm reading a SQL Server book.
I don't understand LEFT OUTER JOIN and RIGHT OUTER JOIN.
According to this book, LEFT OUTER JOIN is illustrated like following.
A LEFT OUTER JOIN will preserve all of the rows from the left-hand table and
only append values that exist from the right-hand table
What left-hand table and right-hand table mean?
Can anybody explain with simple example?