G
Guest
I have a query that group by distinct name from a table and count how many
arraived to some place (arraived =1 , count how many 1 for each name) it
works great , only if a name has not have at least one "1" it doesnt show him
on the list.
i want it to show name and in the field arraived show "0" or nothing null.
this is the query:
SELECT SEPTEMBER10.mazmin_name, Count(SEPTEMBER10.arraived) AS
countarraived
FROM SEPTEMBER10
GROUP BY SEPTEMBER10.mazmin_name, SEPTEMBER10.arraived
HAVING (((SEPTEMBER10.arraived)=1));
who can help?
thanks in advance
alon
arraived to some place (arraived =1 , count how many 1 for each name) it
works great , only if a name has not have at least one "1" it doesnt show him
on the list.
i want it to show name and in the field arraived show "0" or nothing null.
this is the query:
SELECT SEPTEMBER10.mazmin_name, Count(SEPTEMBER10.arraived) AS
countarraived
FROM SEPTEMBER10
GROUP BY SEPTEMBER10.mazmin_name, SEPTEMBER10.arraived
HAVING (((SEPTEMBER10.arraived)=1));
who can help?
thanks in advance
alon