A CROSS JOIN is a Cartesian product of Table A and Table B. Every row from Table A is matched with every row from Table B.
As per the below example, every customer from Table A will be associated with all the products from Table B. This will have 3*3 = 9 records in the result.