BY Best Interview Question ON 19 Feb 2019

Example

Here is the syntax:-

SELECT columns

FROM table1

INNER JOIN table2

ON table1.column = table2.column;

An Inner join is also called a simple join, and it is the mostly used join.