Joining Tables

Cross join

cross join is a product combining two tables. This join returns the same rows as if no WHERE clause were specified. For example:

SELECT au_lname, pub_name,
FROM Authors CROSS JOIN Publishers