EDUCBA

EDUCBA

MENUMENU
  • Explore
    • Lifetime Membership
    • All in One Bundles
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Login
Home Data Science Data Science Tutorials SQL Tutorial SQL Self Join

SQL Self Join

Priya Pedamkar
Article byPriya Pedamkar

Updated March 27, 2023

sql self join

Introduction to SQL Self Join

A self-join is a Structured Query Language (SQL) statement in which a table is joined with itself, an inner join is performed on a single table with itself, particularly in cases when comparisons have to be made between the records of the same table to determine a relationship or in the cases when the table has a FOREIGN KEY which references its own PRIMARY

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Syntax

The generic syntax for working with SQL SELF Join is as follows :

SELECT t1.column_name, t2.column_name
FROM table_name1 t1, table_name1 t2
WHERE t1.common_filed = t2.common_field;

Parameters in SQL Self Join

The different parameters used in the syntax are :

  • SELECT t1.column_name, t2.column_name: It is used to select the required data from the database. Here, t1.column_name is the column from the table’s instance t1. t2.column_name is the column from the table’s instance t2.
  • FROM table_name1 t1, table_name1 t2: It is used to specify the source from which data has to be fetched. Since in self-join, we perform an inner join on a single table. We create two instances of the table as t1 and t2.
  • WHERE t1.common_filed = t2.common_field: It is used to specify the conditions to filter records.In self join we will be mentioning the condition on which the two instances of the table, namely t1 and t2 will join. This is the common field on which tables will join.

Of the above-mentioned parameters, all the parameters are mandatory. You may use GROUP BY, ORDER BY and HAVING clauses based on your requirement.

How does SQL Self Join work?

Self-join is mostly used in cases where we have :

  • Hierarchical Relationships
  • Sequential Relationships

Self join works by joining a table with itself on a defined condition. For example, let’s assume that we have a group of students and they have a best friend relationship with some other student in the same table and we want to know the name of the student and his friend.

Id Student_name Friend_id
1 JAY 3
2 RAY 1
3 MAY 2
  • Now, in order to get the name of each student along with his friend, we can perform a self-join which will join the table something like this on the condition that friend id is equal to student_id.

student id

  • The resultant table will look something like this :
Id Student_name Friend
1 JAY MAY
2 RAY JAY
3 MAY RAY
  • Going ahead we will be discussing the above-mentioned self join in great detail. In order to demonstrate and explain the Self join in SQL effectively, we will be using the following table. This table is made for an e-commerce website. The table contains customer id, names, city, and the country to which they belong. The schema for the above mentioned “customers” table is :
  • Number of Records: 15
Customers
ID(primary key)
Customer
City
Country
  • Let’s have a look at the records in the customer’s table. So that later, we can understand how self join is helpful:
ID Customer City Country Items_purchased Amount_paid
1 Peter King Manchester England Books 120
2 Priya Krishna New Delhi India pen 50
3 Jim Halpert Manchester England pencil 43
4 Michael Scott New York USA Books 250
5 Harvey Spector Birmingham England pencil 100
6 Deepa Kamat Mumbai India Books 370
7 Anita Desai London England pencil 50
8 Rachel Zane Michigan USA pen 70
9 Pretoria John Canberra Australia pen 190
10 John L Budapest Hungry Books 540
11 Justin Green Ottawa City Canada pen 65
12 Babita Ghosh Kolkata India pencil 75
13 Krish Pratt London England eraser 30
14 Elizabeth Blunt London England pencil 340
15 Nina Debrov Amsterdam Netherlands Books 452

Examples to Implement in SQL Self Join

Here are a few examples to illustrate self joins in SQL.

Example #1

Find the pairs of customers who belong to the same city.

Code:

SELECT t1.Customer AS Customer1, t2.Customer AS Customer2, t1.City
FROM Customers t1, Customers t2
WHERE t1.ID <> t2.ID AND t1.City = t2.City
ORDER BY t1.City;

Output:

SQl self join - 2

Explanation: In the above example, the self joins first joins the two instances of customers t1 and t2. It’s like a cartesian product of two tables. Then it filters the given rows based on the criteria that IDs of two customers should not be the same and they should belong to the same city. Finally, after filtering, the resulting records are sorted in ascending order by the city.

Example #2

Find customers who belong to the same city and have shopped for pencils

Code: 

SELECT t1.Customer AS Customer1, t2.Customer AS Customer2, t1.City
FROM Customers t1, Customers t2
WHERE t1.ID <> t2.ID AND t1.City = t2.City AND t1.Items_purchased = 'pencil'
AND t2.Items_purchased = 'pencil'
ORDER BY t1.City;

Output:

SQl self join - 3

Example #3

Find the customers who belong to the same country and have shopped for less than 100

Code:

SELECT t1.Customer AS Customer1, t2.Customer AS Customer2, t1.Country, t1.Amount_paid , t2.
Amount_paid
FROM Customers t1, Customers t2
WHERE t1.ID <> t2.ID AND t1.City = t2.City AND t1.Amount_paid < 100 AND
t2.Amount_paid < 100
ORDER BY Country;

Output:

less than 100

Example #4

Find the pair of customers who have spent more than 300 on Books

Code:

SELECT t1.customer, t1.Amount_paid,t2.customer, t2.Amount_paid
FROM customers as t1 , customers as t2
WHERE t1.Items_purchased = t2.Items_purchased
AND t1.Items_purchased = 'Books' AND t2.Items_purchased = 'Books'
AND t1.Amount_paid > 300 and t2.Amount_paid > 300 AND t1.ID <> t2.ID
Order by t1.Customer;

Output:

300 on Books

  • When performing joins in SQL, we should always try to use table aliases which are abbreviations of the given tables. This helps in writing beautiful pieces of code.

Conclusion

SQL self-join is a statement that is used to join a table on itself. We should use it when we want to find relationships between records in the same table.

Recommended Articles

We hope that this EDUCBA information on “SQL Self Join” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

  1. Joins in MySQL
  2. Relational Database
  3. Spark Functions
  4. SQL Right Join
ADVERTISEMENT
All in One Excel VBA Bundle
500+ Hours of HD Videos
15 Learning Paths
120+ Courses
Verifiable Certificate of Completion
Lifetime Access
ADVERTISEMENT
Financial Analyst Masters Training Program
2000+ Hours of HD Videos
43 Learning Paths
550+ Courses
Verifiable Certificate of Completion
Lifetime Access
ADVERTISEMENT
All in One Data Science Bundle
2000+ Hour of HD Videos
80 Learning Paths
400+ Courses
Verifiable Certificate of Completion
Lifetime Access
ADVERTISEMENT
All in One Software Development Bundle
5000+ Hours of HD Videos
149 Learning Paths
1050+ Courses
Verifiable Certificate of Completion
Lifetime Access
Primary Sidebar
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

ISO 10004:2018 & ISO 9001:2015 Certified

© 2023 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

🚀 Extended Cyber Monday Price Drop! All in One Universal Bundle (3700+ Courses) @ 🎁 90% OFF - Ends in ENROLL NOW