Tag Archives: joins in mysql

Different Type of Joins in Mysql

1. INNER JOIN 2. LEFT JOIN 3. RIGHT JOIN 4. OUTER JOIN(FULL OUTER JOIN) Example: ——– Use the below tables User table: ———– —————————– id | name | designationid —————————– 1 | Arun | 1 | —————————– 2 | jiju | 1 | —————————– 3 | Martin | 2 | —————————– 4 | Manu |… Read More »