This is my Table:

and I am running this query,
SELECT fruits,COUNT(*) as count FROM meva where owner = 'bill' GROUP BY fruits ORDER BY count
and i am getting result as

Is it possible to get the other fruits items as 0 if not matched with owner like this,
Fruit | count
Apple , 2
Mango , 0
Banana , 0
Strawberry ,0
Appricot, 0
Alfonso , 0
A little modification in my query is most appreciated.
thanks
use
SUM()andCASEor by using
IF(inMySQLonly)