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
| ||||
|
feedback
|
|
The reason for the error is that you can not use aggregate (IE: MIN, MAX, COUNT...) functions in the
...but I have my doubts about the query, and think it would be better to use:
| ||||
|
feedback
|
Don't use the min function. That selects the minimum date which is not what you are looking for. The min function is normally used as follows
| |||
|
feedback
|
|
don't use MIN...
| |||
|
feedback
|