What is the difference between CROSS JOIN and INNER JOIN?
CROSS JOIN
INNER JOIN
CROSS JOIN:
SELECT Movies.CustomerID, Movie
The inner join will give the result of matched records between two tables where as the cross join gives you the possible combinations between two tables.