I have no ideas about the Joins in Database. Please explain it with the write example.
I have no ideas about the Joins in Database. Please explain it with the write example.
Software Developer
Hi, my self Ravi Vishwakarma. I have completed my studies at SPICBB Varanasi. now I completed MCA with 76% form Veer Bahadur Singh Purvanchal University Jaunpur. SWE @ MindStick | Software Engineer | Web Developer | .Net Developer | Web Developer | Backend Engineer | .NET Core Developer
A join in a database refers to the combination of rows from two or more tables based on a related column between them. The result shows one table with columns from the joined tables.
The types of joins in SQL includes:
As an example,If we have have two tables including "Customers" and "Orders", with the following data:
Customers table:
Orders table:
If we join these two tables on the "CustomerID" column then we will get the following result:
Result of INNER JOIN: