What is the difference between LEFT JOIN and LEFT OUTER JOIN in SQL Server?
In a nutshell, nothing. LEFT JOIN and LEFT OUTER JOIN are equivalent. As per the documentation: FROM (Transact-SQL): The keyword OUTER is marked as optional (enclosed in square brackets). In this specific case, whether you specify OUTER or not …
What is the difference between LEFT JOIN and LEFT OUTER JOIN in SQL Server? Learn More