Hi,
How to find average of count ..something like AVG(count(*))
I have table employee_master where employee_id is the unique key. This table has one more field which is Department.
I want to find average employees/dept...
select department AVG(count(*)) from employee_master group by department
How can I achieve this..
Please help,
Regards,
Raja