Знаходження Співробітників з Зарплатою Вище Середньої Челендж
When a subquery is written in the WHERE
section, we can use the IN
operator and comparison operators
:
Я згадував раніше, що коли підзапит написаний у розділі WHERE
, ми можемо використовувати оператор IN
та оператори порівняння
.
Наприклад, ось так:
Swipe to start coding
Find employees whose salary
is above the average salary of all employees using a subquery in the WHERE
section.
The resulting table should have 3 columns: first_name
, last_name
, and salary
. Then, sort the result by salary from highest to lowest using ORDER BY
.
Note
This syntax can be used as a great alternative to the
HAVING
clause.
Brief Instructions
- Retrieve the
first_name
,last_name
, andsalary
columns from theemployees
table. - In the
WHERE
clause, use an inner query with the syntaxsalary > [inner query]
. - In the inner query, get the average value of the
salary
column from theemployees
table. - Sort the results by
salary
in descending order.
Рішення
Дякуємо за ваш відгук!
single
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Awesome!
Completion rate improved to 4
Знаходження Співробітників з Зарплатою Вище Середньої Челендж
Свайпніть щоб показати меню
When a subquery is written in the WHERE
section, we can use the IN
operator and comparison operators
:
Я згадував раніше, що коли підзапит написаний у розділі WHERE
, ми можемо використовувати оператор IN
та оператори порівняння
.
Наприклад, ось так:
Swipe to start coding
Find employees whose salary
is above the average salary of all employees using a subquery in the WHERE
section.
The resulting table should have 3 columns: first_name
, last_name
, and salary
. Then, sort the result by salary from highest to lowest using ORDER BY
.
Note
This syntax can be used as a great alternative to the
HAVING
clause.
Brief Instructions
- Retrieve the
first_name
,last_name
, andsalary
columns from theemployees
table. - In the
WHERE
clause, use an inner query with the syntaxsalary > [inner query]
. - In the inner query, get the average value of the
salary
column from theemployees
table. - Sort the results by
salary
in descending order.
Рішення
Дякуємо за ваш відгук!
Awesome!
Completion rate improved to 4single