Equi join in Mysql:

Equi Join is used to combine records from two tables.In equi join we have to use only '=' operator.

Example:


SELECT <column_name> 
FROM <Table1> , <Table2> 
where Table1.column = Table2.column