Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ HAVING Clause | Section
Intermediate SQL
セクション 1.  6
single

single

bookHAVING Clause

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

The school information system is being reviewed to ensure data consistency and accuracy. As part of this review, a new data analysis task has been assigned.

During routine checks, it was discovered that some student records contain more than one grade entry, even though the system is designed to store only a single grade per student.

Your task is to help identify such cases for further internal review.

Let's think together about how we can do this. You could start by considering that we can do this using a WHERE clause, and it would look something like this:

123
SELECT student_surname FROM student_grades WHERE COUNT(grade) > 1
copy

But, as you can see, we get an error indicating that we cannot use aggregate functions inside a WHERE clause. This is where we'll need the HAVING clause.

Let's say we need to retrieve the departments where employees' average salary is below $70,000 per year. To achieve this, we'll need to use an aggregate function and the HAVING clause:

1234
SELECT department FROM employees GROUP BY department HAVING AVG(salary) < 70000
copy

We received one department in response using the HAVING clause, where we set a condition for the column by which we grouped the data.

Note
Note

To use data aggregation within the HAVING clause, we need to have data grouping in our query. As in the query above, we grouped the data by the department column.

Let's look at the more generalized syntax of the HAVING clause and when it's best to use it:

SELECT column1, column2 --(optional)
FROM table
GROUP BY column1
HAVING AGG(column_n) --(condition)

Let's also briefly understand the main difference between WHERE and HAVING clauses and when to use each of them:

  1. The WHERE clause is used before data aggregation, while the HAVING clause is used after data aggregation;
  2. The WHERE clause is written before GROUP BY, while the HAVING clause is written after GROUP BY.

These are the two main differences you need to remember for successful use of the HAVING clause. Now, let's return to the task given to us by the school.

タスク

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

Some students appear multiple times in the grade records, which indicates duplicate or unexpected entries in the system.

You need to retrieve the last names of all students whose records contain more than one grade entry. The result will be used by the school administration to review and correct the data if necessary.

Return only the list of last names that meet this condition, sorted alphabetically.

Brief Instructions

  • Retrieve the student_surname column.
  • Group the data by student_surname.
  • Use the HAVING clause to filter the results based on COUNT(grade) > 1.
  • Sort the results by student_surname.

解答

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

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

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

セクション 1.  6
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt