What is outer join?Explain with examples.
Hi,
The SQL OUTER JOIN clause is a variation of the SQL JOIN clause enables a SELECT statement to access more than one table. The JOIN clause controls how tables are linked. It is a qualifier of the SQL FROM clause.
SQL OUTER JOIN Syntax
SELECT <column_name1>, <column_name2> <aggregate_function> FROM <table_name> LEFT OUTER JOIN <table_name> ON <join_conditions>
thanks.