A Cross Join is equivalent to:
Explanation
Cartesian product of two sets of records A and B returns a set C such that C contains all ordered pairs (a, b) where a belongs to A and b belongs to B.
This definition can be easily generalized to the case of several sets.
Main idea behind cartesian product (or cartesian join, or cross join) is that it returns all possible combinations of rows from all tables specified in the query.
Theory
  • In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise.
  • The CARTESIAN JOIN or CROSS JOIN returns the Cartesian product of the sets of records from the two or more joined tables. Thus, it equates to an inner join where the join-condition always evaluates to True or where the join-condition is absent from the statement.

    Syntax:

    The basic syntax of CARTESIAN JOIN or CROSS JOIN is as follows:
    SELECT table1.column1, table2.column2...
    FROM  table1, table2 [, table3 ]
    

    Read more: SQL - CARTESIAN or CROSS JOINS
  • Example:

    Consider the following two tables,
    (a) CUSTOMERS table is as follows:
    | ID | NAME     |
    +----+----------+
    |  1 | Ramesh   |
    |  2 | Khilan   |
    
    (b) Another table is ORDERS as follows:
    |OID  | DATE  | C_ID | AMOUNT |
    +-----+-------+------+--------+
    | 102 | 10-08 |    3 |   3000 |
    | 100 | 10-08 |    3 |   1500 |
    | 101 | 11-20 |    2 |   1560 |
    
    Now, let us join these two tables using INNER JOIN as follows:
    SQL> SELECT  ID, NAME, AMOUNT, DATE
         FROM CUSTOMERS, ORDERS;
    
    This would produce the following result:
    | ID | NAME     | AMOUNT | DATE  |
    +----+----------+--------+-------+
    |  1 | Ramesh   |   3000 | 10-08 |
    |  1 | Ramesh   |   1500 | 10-08 |
    |  1 | Ramesh   |   1560 | 11-20 |
    |  2 | Khilan   |   3000 | 10-08 |
    |  2 | Khilan   |   1500 | 10-08 |
    |  2 | Khilan   |   1560 | 11-20 |
    

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по SQL
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты