Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
SELECT ROUND(AVG(ANNUAL_SALARY),0)

I know that one I stated was incorrect. Can someone correct it for me?

share|improve this question
4  
What's the question? What are you trying to do? We need more information before anyone could help answer this. – Adam Wenger Nov 19 '12 at 1:32

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.