Yogesh Chauhan's Blog

SQL Inner Join

in SQL/MySQL on August 24, 2019

SQL JOIN

We use JOIN clause in SQL to combine rows from two or more tables based on a similar column between those tables.

Syntax:


SELECT column/columns
FROM table1
INNER JOIN table2
ON table1.column = table2.column;

Basically we are selecting columns from table 1 and 2 and joining them where the records are matching. Let’s look at the example,


SELECT country.Region, countrylanguage.Language, country.Name
FROM country
INNER JOIN countrylanguage ON country.Code=countrylanguage.CountryCode LIMIT 20;

In the example above, I am selecting Region column from country table, Language column form countrylanguage table and Name column for country table. Now the inner join has been performed on countrylanguage table. In the case of INNER JOIN, the order of the the tables doesn’t matter as it’s going to select the matching values only. Now we have to apply the condition to make sure we are getting the data for matching values only.

Now in the countrylanguage the name of the country code column is CountryCode but in the country table it’s just Code. So we have to be careful while comparing those two columns or the query won’t work. So at the end the second condition is c.CountryCode=b.Code

To show only limited number of rows I have used the LIMIT clause. You can see the results in the DEMO. For all the matching values we have Region, Language and Name data.


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
Higher Order Functions in JavaScript with ExamplesJavaScript3 ways to pass a variable in url() function in SCSS (Sass)SCSSHow to compress images with gulp in WordPress?WordPressSelect statement in Postgres with examplesPostgresRBV Framework and closing of big brandsMiscellaneousAngular 9 time clock update every minute, second, hourAngular