CLASS 3 - Joins in SQL
1. What is SQL JOIN’s? An SQL join clause combines columns from one or more tables in a relational database. It creates a set that can be saved as a table or used as it is. A JOIN is a means for combining columns from one (self-join) or more tables by using values common to each. 2. What are the different types of SQL JOINs ? The list of different types of SQL JOINs as follows: · INNER JOIN · LEFT JOIN · RIGHT JOIN · FULL JOIN 3. What is left outer join? SQL LEFT JOIN Keyword. The LEFT JOIN keyword returns all records from the lefttable (table1), and the matched records from the right table (table2). The result is NULL from the right side, if there is no match. 4. What is a full outer join? SQL FULL OUTER ...