I'm using MySQL and writing this query :
select gauno, count(potno)
from druide_potion
group by gauno
having count(potno) = min(count(potno))
But Mysql says : "#1111 - Invalid use of group function".
In what is this request incorrect? (When I remove the HAVING, I haven't the error but haven't the result expected as well).
Thanks.