8.5. RIGHT OUTER JOIN

 

  • The RIGHT JOIN keyword returns all records from the right table (table2), and the matched records from the left table (table1). The result is NULL from the left side, when there is no match.

Image of Right join


QUERY: - SELECT T1.column_name, T2.column_name FROM table1 T1 RIGHT JOIN table1 T2 on condition;

EXAMPLE: - SELECT a.e_id, a.f_name, b.salary FROM employee a RIGHT JOIN salary b on a.e_id = b.e_id ;

Last modified: Monday, 2 December 2019, 12:19 PM