5 lines
161 B
SQL
5 lines
161 B
SQL
/*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;
|