Showing posts with label equi join in sql. Show all posts
Showing posts with label equi join in sql. Show all posts
Equi join in Mysql : Mysql Joins
Posted by Raj
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
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