• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
July 08, 2022 |470 Views
Right Join
  Share   Like
Description
Discussion

The RIGHT JOIN keyword in SQL returns the all matching records(or rows) and the records(or rows) which are present in the right table but not in the left table .That means that, if a certain row is present in the right table but not in the left, the result will include this row but with a NULL value in each column from the left . If a record from the left table is not in the right, it will not be included in the result.

 

Right Join : https://www.geeksforgeeks.org/sql-right-join/

Read More