
What is SQL Natural Join?
Natual Join is a type of join in SQL which combines row from 2 tables based on common column which has same name and datatype. It automatically matches the 2 columns and eliminates the duplicate column. read more
Example
Database
CREATE TABLE Customers (
CustomerID INT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Email VARCHAR(100),
City VARCHAR(50)
);
| CustomerID | FirstName | LastName | City | |
|---|---|---|---|---|
| 1 | John | Doe | john.doe@example.com | New York |
| 2 | Jane | Smith | jane.smith@example.com | Los Angeles |
| 3 | Emily | Johnson | emily.j@example.com | Chicago |
CREATE TABLE Orders (
OrderID INT PRIMARY KEY,
CustomerID INT,
OrderDate DATE,
TotalAmount DECIMAL(10, 2),
City VARCHAR(50),
FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID)
);
| OrderID | CustomerID | OrderDate | TotalAmount | City |
|---|---|---|---|---|
| 101 | 1 | 2024-01-10 | 250.50 | New York |
| 102 | 2 | 2024-01-11 | 150.00 | Los Angeles |
| 103 | 3 | 2024-01-12 | 300.75 | Chicago |
Syntax
SELECT *
FROM TABLE1
NATURAL JOIN TABLE2;
Query
SELECT *
FROM Orders
NATURAL JOIN Customers;

Explanation
In this scenario, SQL combines the Orders and Customers tables using a natural join. The join is performed based on the common columns, CustomerID and City, which appear at the beginning of the resulting table.
As a result, SQL brings together columns like FirstName, LastName, and Email from the Customers table, along with OrderID, OrderDate, and TotalAmount from the Orders table. The shared columns, CustomerID and City, are seamlessly included in the result without duplication, making the output clear and concise.
I hope this explanation was helpful for you, consider sharing this with your friends. thank you.
- Mastering Pivot Table in Python: A Comprehensive Guide
- Data Science Interview Questions Section 3: SQL, Data Warehousing, and General Analytics Concepts
- Data Science Interview Questions Section 2: 25 Questions Designed To Deepen Your UnderstandingÂ
- Data Science Questions Section 1: Data Visualization & BI Tools (Power BI, Tableau, etc.)
- Optum Interview Questions: 30 Multiple Choice Questions (MCQs) with Answers
Hi, I am Vishal Jaiswal, I have about a decade of experience of working in MNCs like Genpact, Savista, Ingenious. Currently i am working in EXL as a senior quality analyst. Using my writing skills i want to share the experience i have gained and help as many as i can.