Hi,
I am writing below query to get distinct of designation from a table.
How do I get count for each designation by editing this query.
For example, one of the field is 'Manager' and count for managers is 70.
How to get count 70 for manager by editing this query.
SELECT DISTINCT Designation
FROM directory
ORDER BY Designation;
Can anyone help me in this please.
I am writing below query to get distinct of designation from a table.
How do I get count for each designation by editing this query.
For example, one of the field is 'Manager' and count for managers is 70.
How to get count 70 for manager by editing this query.
SELECT DISTINCT Designation
FROM directory
ORDER BY Designation;
Can anyone help me in this please.