The INNER JOIN returns the all records from the both tables for which the join condition is true. It is also known as EQUIJOIN.
Syntax:
SELECT columnList FROM table1 INNER JOIN table2 ON table1.columnName = table2.columnName;
or
SELECT columnList FROM table1 JOIN table2 ON table1.columnName = table2.columnName;
No comments:
Post a Comment