Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Departments with Above-average Salaries | Subqueries in Human Resources
Subqueries in SQL
セクション 2.  4
single

single

bookChallenge: Departments with Above-average Salaries

メニューを表示するにはスワイプしてください

You are about to tackle a practical scenario where subqueries help you analyze salary data across departments. Imagine a company wants to know which departments pay above the company-wide average salary. To solve this, you will need to compare each department's average salary with the overall average salary for all employees. This challenge will deepen your understanding of subqueries for comparative analysis in SQL.

タスク

スワイプしてコーディングを開始

Write a query to return the names of departments where the average salary of employees in that department is higher than the overall average salary across all employees.

  • Use a subquery to calculate the overall average salary for all employees.
  • Group employees by department and calculate the average salary for each department.
  • Only include those departments where the department average salary is greater than the overall average salary.
  • Return the department names.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 2.  4
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt