Google News
logo
MySQL - Interview Questions
How to join two tables in MySQL?
We can connect two or more tables in MySQL using the JOIN clause. MySQL allows various types of JOIN clauses. These clauses connect multiple tables and return only those records that match the same value and property in all tables. The following are the four easy ways to join two or more tables in MySQL :
 
* Inner Join
* Left Join
* Right Join
* Cross Join
Advertisement