COUNT(DISTINCT expression[,expression...])

Description: Returns the number of rows retrieved in a SELECT statement where values of expression are distinct and not NULL. Generally used with GROUP BY clause.

Examples:

SELECT COUNT(DISTINCT city_name)
  FROM weather

returns the total number of different cities named.

SELECT city_name, COUNT(DISTINCT temperature)
  FROM weather
  GROUP BY city_name

returns the number of different temperatures recorded, for each city.

See also: COUNT()

Get Sams Teach Yourself MySQL in 21 Days, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.