programming-examples/sql/Joins/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 for that customer who belongs to a city.sql
2019-11-18 14:05:53 +01:00

6 lines
277 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 for that customer who belongs to a city. */
SELECT *
FROM salesman a
CROSS JOIN customer b
WHERE a.city IS NOT NULL;