Toots
2010-06-08 06:46:52 UTC
SELECT fAvailmentBranch, Count(fAvailmentBranch) AS NUMBER_OF_CLIENTS FROM Appointments WHERE fDate=#6/8/2010# Group By fAvailmentBranch
The above displays a two-column table. The first column shows the name of the branch while the second column shows the number of clients per branch in a specific date, in this case 06/8/2010.
Now, what's the SQL query to display the same data as above but this time with 5 specific dates instead of just one?
Thanks in advance =)