/*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;