What is the difference between inner and outer join? Explain with example.
Vishal Prajapati
Select an image from your device to upload
Main difference between Inner join and outer join is that Inner join select the records between tables that are matching and ignore Non-matching records.And for Outer join first we need to unserstand that Outer join is classified into 2 types
1.Left Outer Join2.Right outer Join
We can use Left outer Join when we want to select all the records from the Left Table and matching records from the both tables , same for right outer join we can use right outer join when we want all the data from the Right tables along with the matching records from the both tables.
Hope this will help….