LoslegenKostenlos loslegen

Fixing incorrect groupings

One issues with having strings stored in different formats is that you may incorrectly group data. If the same value is represented in multiple ways, your report will split the values into different rows, which can lead to inaccurate conclusions.

In this exercise, you will query from the summer_games_messy table, which is a messy, smaller version of summer_games. You'll notice that the same event is stored in multiple ways. Your job is to clean the event field to show the correct number of rows.

Diese Übung ist Teil des Kurses

Reporting in SQL

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

-- Pull event and unique athletes from summer_games_messy 
SELECT 
	____, 
    ____ AS athletes
FROM ____
-- Group by the non-aggregated field
GROUP BY ____;
Code bearbeiten und ausführen