Create a Cartesian product
When you perform a multiple-table query that does not explicitly state a join condition among the tables, you create a Cartesian product. A Cartesian product consists of every possible combination of rows from the tables. This result is usually large and unwieldy.
The
following query selects from two tables and produces a Cartesian product.
Although only 52 rows exist in the state table
and 28 rows in the customer table, the effect of the query
is to multiply the rows of one table by the rows of the other and
retrieve an impractical 1,456 rows, as the result shows.
In addition, some of the data that is displayed in the concatenated rows is contradictory. For example, although the city and state from the customer table indicate an address in California, the code and sname from the state table might be for a different state.