w3resource

SQL Exercises: Number of non NULL city values for salesmen


From the following table, write a SQL query to count the number of salespeople in a city. Return number of salespeople.

Sample table: salesman

 salesman_id |    name    |   city   | commission 
-------------+------------+----------+------------
        5001 | James Hoog | New York |       0.15
        5002 | Nail Knite | Paris    |       0.13
        5005 | Pit Alex   | London   |       0.11
        5006 | Mc Lyon    | Paris    |       0.14
        5007 | Paul Adam  | Rome     |       0.13
        5003 | Lauson Hen | San Jose |       0.12

Sample Solution :

-- This query counts the number of rows in the 'salesman' table where the 'city' is not NULL.
SELECT COUNT(*)
-- Specifies the table from which to retrieve the data (in this case, 'salesman').
FROM salesman
-- Filters the rows to only include those where the 'city' is not NULL.
WHERE city IS NOT NULL;

Output of the Query:

count
6

Code Explanation:

The said SQL query to count the number of rows in the 'salesman' table where the "city" column is not NULL. The "COUNT(*)" function counts the number of rows in the table, and the "WHERE city IS NOT NULL" clause specifies that only rows where the "city" column is not NULL should be counted.

Relational Algebra Expression:

Relational Algebra Expression: Count the number of different non NULL city values for salesmen.

Relational Algebra Tree:

Relational Algebra Tree: Count the number of different non NULL city values for salesmen.

Explanation :

Syntax of counts the number of different non NULL city values for salesmen

Visual presentation:

Result of counts the number of different non NULL city values for salesmen


Practice Online



For more Practice: Solve these Related Problems:

  • Write a SQL query to count the number of salespeople in the city 'London'.
  • Write a SQL query to count the number of salespeople in the city 'Paris', but only for salespeople with a commission rate of 0.13 or higher.
  • Write a SQL query to count the number of salespeople in the city 'New York', but only for salespeople who have made at least one sale.
  • Write a SQL query to count the number of salespeople in the city 'San Jose', but only for salespeople with a commission rate of 0.12 or lower.


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous SQL Exercise: Count all orders for a specific date.
Next SQL Exercise: Count how many salesmen each day register orders.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.