SELECT ROUND(AVG(ANNUAL_SALARY),0)
I know that one I stated was incorrect. Can someone correct it for me?
|
|
I am assuming that the table name is SalaryHistory So the query will be SELECT ROUND(AVG([ANNUAL_SALARY]), 0) FROM SalaryHistory This will give you average salary of all the employees, but if you want to get avg salary of each employee you need to write down the query something like this. SELECT ROUND(AVG([ANNUAL_SALARY]), 0), EmployeeID FROM SalaryHistory GROUP BY EmployeeID You may join this EmployeeID with the Employee Table to get the Employee Name in the result set instead of getting EmployeeID only. Anyways, if you just put the table structure along with your requirement, I may be able to give you an exact query. |
|||
|
|