I found the following query and appreciate it if someone can help explain to me what this means.
select * from table1, table2
You will get all rows from table1 multiplied by all rows from table2, and will display depending on the columns of both tables. As @sgeddes pointed out, creating a cartesian product.