If I run a query such as:
SELECT COUNT(*) as num FROM table WHERE x = 'y'
Will it always return a result, even when the query doesn't match any record? Or do I need to validate and make sure a row is returned as the result?
If I run a query such as:
SELECT COUNT(*) as num FROM table WHERE x = 'y'
Will it always return a result, even when the query doesn't match any record? Or do I need to validate and make sure a row is returned as the result?
Yes, because it's an aggregate and returns zero. Unless you add GROUP BY in which case no result because there is no group...
MAX/SUM etc would return NULL unless you add GROUP BY then no rows. Only COUNT returns a number for no results
Edit, a bit late: SUM would return NULL like MAX
Edit, May 2013: this applies to all main RDBMS. I guess as per the ANSI standard
COUNT(*)
? Also see Numeric Types in the MySQL manual. –
Universality Yes, the return value of the "count" function itself is always a non-null integer, without exception.
Having said that, you may be more interested in the return value of your query, which is actually a result set. If that's the case, then you simply have to consider whether your query includes a "group by" clause.
A non-grouped query with aggregate functions like
select count(*), sum(*), max(*), min(*) from table
produces a result set with a single record containing the return value(s) of the aggregate function(s). In this case, your result set will always have exactly one record, with columns containing the return values of whatever aggregate functions you included. Within this lone record, the return value of count will always be a non-null integer, while the return values of the other aggregate functions such as min, max, and sum may be null. In the above example, your returned record may be "zero, null, null, null", but will never be "null,null,null,null", since count never returns null. So if you're calling only "count", then that one column in that one record returned will always contain the non-null return value of count; hence you can rest assured that the scalar return value of your count query will always be a non-null integer.
On the other hand, a grouped query with aggregate functions like
select count(*), sum(*), max(*), min(*) from table group by column
produces a result set with zero or more records where each record contains the return value of the aggregate function(s) for each group identified. In this case, if there are no groups identified, there are no groups for the aggregate functions to run on, the functions are never run, and the "query return value" will be an empty set with no records at all.
Test it out on a table with no records to see the results:
create table #t (c int);
select COUNT(c), MIN(c), MAX(c), SUM(c) from #t; --returns one record {0, null, null, null}
select COUNT(c), MIN(c), MAX(c), SUM(c) from #t group by c; --returns no records
drop table #t;
So whether you're calling count, min, max, or sum, it is important to understand not only the return values of individual aggregate functions, but also the "return value" of the query itself, and what that result set contains.
SUM(*)
. –
Erotogenic Aggregate function Count() always returns value
There will always be a row of result like this:
| COUNT(*) |
------------
| 0 |
if there are no matches.
By the way, I would prefer to count only the primary key instead of *
.
COUNT(*)
is not the same as COUNT(column)
in general. Counting a column checks for distinct values, not all records. Granted, when you count your primary key you'll get all records because primary keys must be unique, but this will be no faster than COUNT(*)
and might be slower (unless MySQL auto-optimizes back to COUNT(*)
). –
Direction distinct
keyword. It counts values that are not NULL
–
Internuncial if no record is matched the count will return 0. (so yes, count always returns a result, unless you have some syntax error)
© 2022 - 2024 — McMap. All rights reserved.