Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free triallukej
34,222 PointsThe meaning of COUNT(1)?
I am puzzled as to what the meaning of COUNT(1) is? It counts the first column or a column named 1?
I just avoid it by using
COUNT(*)
, or
COUNT(period_id)
in this video
2 Answers
Steven Parker
231,184 PointsThe "COUNT
" function counts every row for which the supplied value is not null. So there's no difference between providing a "*", a literal digit, or an ID field. The number "1" is just a common convention used used to mean "count all rows".
But if you supply a field name that can contain nulls, rows where that field is null will not be counted. For examples, using the playground from this video:
SELECT COUNT(1) FROM subjects; /* 24 (all rows) */
SELECT COUNT(name) FROM subjects; /* 24 (no nulls) */
SELECT COUNT(grade) FROM subjects; /* 18 (because of nulls) */
Tommy Gebru
30,164 PointsI also keep assuming it to be either the first column of the table or the first parameter of the SELECT statement