|
|
|
SQL Tutorial
|
PHP SQL Right Join
JOIN is used to query data from two or more tables. The right join is used in case of need to return all rows from the right table, even if the left table doesn't have any match.
View Rating |
|
|
SQL Tutorial
|
Mysql Outer Join
Mysql Outer Join return you the set of all matching records from both table. The Outer Join does not requires each records to be matched in both the tables.
View Rating |
|
|
SQL Tutorial
|
Mysql Cross Join
Cross Join is also called Cartesian Product Join. The Cross Join in SQL return you a result table in which each row from the first table is combined with each rows from the second table.
View Rating |
|
|
SQL Tutorial
|
Mysql EquiJoin
Equi Join is a classified type of Inner Join in Mysql. Equi Join is used to combine records from two table based on the common column exists in both table.
View Rating |
|
|
SQL Tutorial
|
Mysql Join 3 Tables
Mysql Join 3 Tables is used to join 3 Tables using left join. The left join returns you only selective records which are common in tables on the basis of common column.
View Rating |
|
|
SQL Tutorial
|
Mysql Natural Join
Mysql Natural Join is a specialization of equi-joins. The join compares all columns in both tables that have the same column-name in both tables that have column name in the joined table.
View Rating |
|
|