5 lines
161 B
MySQL
5 lines
161 B
MySQL
|
/*Write a SQL statement that counts the number of different non NULL city values for salesmen.*/
|
||
|
SELECT COUNT(*)
|
||
|
FROM salesman
|
||
|
WHERE city IS NOT NULL;
|