CROSS JOIN

SELECT with a CROSS JOIN

In this exercise we will query the customers table using a CROSS JOIN with the suppliers table.

SELECT customers.customer_id,
customers.contact_name,
suppliers.company_name,
suppliers.supplier_id
FROM customers
CROSS JOIN suppliers;
Run in terminal

The query should return 2,639 rows.