• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
July 08, 2022 |2.4K Views
Left Join
  Share   Like
Description
Discussion

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


SQL Left Join : https://www.geeksforgeeks.org/sql-left-join/