MS SQL Server Joins Question:
What is right outer join in SQL server joins?
Answer:
In Right Outer Join all rows in the second-named table i.e. "right" table, which appears rightmost in the JOIN clause are included. Unmatched rows in the left table are not included.
Previous Question | Next Question |
What are the properties of sub-query? | What is full outer join in SQL server joins? |