You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/sql/Joins/Write a SQL statement to ma...

5 lines
206 B
SQL

/*Write a SQL statement to make a cartesian product between salesman and customer i.e. each salesman will appear for all
customer and vice versa.*/
SELECT *
FROM salesman a
CROSS JOIN customer b;