Yogesh Chauhan's Blog

NATURAL JOIN in Postgres

in Postgres on July 31, 2020

A NATURAL JOIN creates an implicit join based on the same column names in the tables.

Basically, it looks like this.

NATURAL JOIN in PostgreSQL

Natural joins can be INNER JOIN, LEFT JOIN, or RIGHT JOIN. By default it’s INNER JOIN means NATURAL JOIN = INNER JOIN by default but it will consider all the column names that are same to join the table.

Syntax:


SELECT a.column2, b.column2
FROM table a
NATURAL [INNER | LEFT | RIGHT] JOIN table b;

I am using alias as well in the syntax. You can use name of the table instead of alias. Alias makes it better to write the query. Learn more about alias in this post:

Column And Table Alias In Postgres

NATURAL [INNER] JOIN Query Example 

I am using the database for all examples. It is available on my Github public repo


SELECT c.contact_name, o.order_date 
FROM customers c NATURAL JOIN orders o;

//Output
contact_name.  order_date 
"Paul Henriot"    "1996-07-04"
"Karin Josephs"    "1996-07-05"
"Mario Pontes"    "1996-07-08"
...
...
830 rows

It’s the same result as the first example in this INNER JOIN post: INNER JOIN In Postgres

NATURAL LEFT JOIN Query Example


SELECT c.contact_name, o.order_date 
FROM customers c NATURAL LEFT JOIN orders o;

//Output
contact_name.       order_date
....
....
....
"Guillermo Fernández"    "1998-05-05"
"Jytte Petersen"    "1998-05-06"
"Michael Holz"    "1998-05-06"
"Laurence Lebihan"    "1998-05-06"
"Paula Wilson"    "1998-05-06"
"Marie Bertrand"    null
"Diego Roel"        null
...
832 rows

It’s the same result as the first example in this LEFT JOIN post: LEFT JOIN In Postgres

RIGHT LEFT JOIN Query Example


SELECT c.contact_name, o.order_date 
FROM customers c NATURAL RIGHT JOIN orders o;

//Output
contact_name.       order_date
....
....
....
"Guillermo Fernández"    "1998-05-05"
"Jytte Petersen"    "1998-05-06"
"Michael Holz"    "1998-05-06"
"Laurence Lebihan"    "1998-05-06"
"Paula Wilson"    "1998-05-06"
...
830 rows

It’s the same result as the first example in this RIGHT JOIN post: RIGHT JOIN In Postgres

When and why to use NATURAL JOIN?

CASE 1: In my opinion, if you have just one common (similar name) column between two or more tables and if you want to JOIN them then you should definitely go for NATURAL JOIN. 

CASE 2: If you have more than one common (similar name) columns and if you want the result to consider all the common columns, then use NATURAL JOIN.

CASE 3: Now, If you have more than one common (similar name) columns and if you want to consider specific common column then DO NOT use NATURAL JOIN.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
Colleague UI Basics: The Context AreaColleagueHow to create a flip pricing table using CSS and JavaScript?CSSCan We Use For Loop to Loop Through Associative Arrays in PHP?PHPSolution to “NullInjectorError: No provider for module” in Angular 9AngularHow to invalidate all existing cookies using Security Keys in WordPress?WordPressSelector Lists and Combinators in SCSS (Sass)SCSS