Difference between revisions of "COUNT"
From SQLZOO
| Line 29: | Line 29: | ||
<p>See also</p> | <p>See also</p> | ||
<ul> | <ul> | ||
| − | <li>[ | + | <li>[[AVG |AVG function]]</li> |
| − | <li>[ | + | <li>[[SUM |SUM function]]</li> |
| − | <li>[ | + | <li>[[MIN |MIN function]]</li> |
</ul> | </ul> | ||
Revision as of 12:40, 13 July 2012
| COUNT(f) | ||
|---|---|---|
| Engine | OK | Alternative |
| ingres | Yes | |
| mysql | Yes | |
| oracle | Yes | |
| postgres | Yes | |
| sqlserver | Yes | |
COUNT
COUNT finds the number of non-null values in a column.
COUNT is an aggregate function it is normally used with GROUP BY.
SELECT region, COUNT(name)
FROM bbc
GROUP BY region
With a GROUP BY region statement each region shows up just once. The COUNT column gives the number of countries for each region.
SELECT region, COUNT(name) FROM bbc GROUP BY region
See also