Hi,
I am using below query to get details.
SELECT Designation, Count(Designation) AS Total
FROM Combine
WHERE MyDate = #5/7/2018#
GROUP BY Designation
ORDER BY Count(Designation);
This query gives me number of people for each designation from the table.
How can get sum of number of people for each designation.
Can anyone please help me in this.
I am using below query to get details.
SELECT Designation, Count(Designation) AS Total
FROM Combine
WHERE MyDate = #5/7/2018#
GROUP BY Designation
ORDER BY Count(Designation);
This query gives me number of people for each designation from the table.
How can get sum of number of people for each designation.
Can anyone please help me in this.