Tag Archives: mysql join

MYsql Joins

The join keyword is used in an mysql statement to query data from two or more tables,based on the relationship between certains columns in the tables. Below are the different types of joins with syntax 1.INNER JOIN-Returns rows when there is at least one match in both tables. Eg:select column_names from table_name1 INNER JOIN table_name2… Read More »