programming-examples/sql/AggregateFunctions/Write a SQL statement that counts the number of different non NULL city values for salesmen.sql
2019-11-18 14:05:53 +01:00

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;