LoslegenKostenlos loslegen

Is this a long song?

Ever feel like a song is just dragging on? In this exercise, you're going to categorize each song based on its length, which is either short, normal, or long. Good luck!

Diese Übung ist Teil des Kurses

Data Manipulation in Snowflake

Kurs anzeigen

Anleitung zur Übung

  • Complete the SQL query to categorize a song less than 180000 milliseconds as a 'Short Song'.
  • In the next conditional statement, add logic to label a song with a length between 180000 and 300000 milliseconds as 'Normal Length'.
  • If neither of these conditions are met, set the value to 'Long Song'.

Interaktive Übung

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

SELECT
	name,
    milliseconds,
    CASE
    	___ milliseconds < ___ THEN '___'
        WHEN ___ BETWEEN ___ AND ___ ___ '___'
        ___ '___'
    END AS song_length
FROM store.track;
Code bearbeiten und ausführen