Login
Register
Imagine you’re an HR manager and want to get an overview of the average performance rating for each department
0
votes
Imagine you’re an HR manager and want to get an overview of the average performance rating for each department. Write an Oracle SQL query to retrieve the department and the average performance rating for each department.
sql-query
asked
Jan 23, 2024
in
Oracle
by
Please
log in
or
register
to answer this question.
1
Answer
0
votes
SELECT department, AVG(rating) AS avg_rating
FROM employees
GROUP BY department;
answered
Jan 23, 2024
by
...