I am trying to count the number of rows whose date has not yet passed so i can get only the current records
I get an error sayng
MySQL error #111 Invalid use of group function
SELECT COUNT(festivalid) FROM festivals WHERE min(datefrom) > now()
I am trying to count the number of rows whose date has not yet passed so i can get only the current records
I get an error sayng
MySQL error #111 Invalid use of group function
SELECT COUNT(festivalid) FROM festivals WHERE min(datefrom) > now()
The reason for the error is that you can not use aggregate (IE: MIN, MAX, COUNT...) functions in the
WHERE
clause - only in theHAVING
clause can you do this. And to define theHAVING
clause, your query needs to have aGROUP BY
clause defined:...but I have my doubts about the query, and think it would be better to use:
CURRENT_TIMESTAMP
is ANSI standard equivalent to MySQL specificNOW()
, making the query portable to other databases.