8 lines
256 B
MySQL
8 lines
256 B
MySQL
|
/*12. Write a query to create a view that shows each salesman with more than one customers.*/
|
||
|
CREATE VIEW mcustomer
|
||
|
AS SELECT *
|
||
|
FROM salesman a
|
||
|
WHERE 1 <
|
||
|
(SELECT COUNT(*)
|
||
|
FROM customer b
|
||
|
WHERE a.salesman_id = b.salesman_id);
|