Get startedGet started for free

Comparing invoice totals

Previously, you worked to categorize invoices based on the number of songs sold. Now, you'll take that to the next level. Your goal is to determine just how much more customers spend when buying multiple songs. Good luck!

This exercise is part of the course

Data Manipulation in Snowflake

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Run this query without editing it.
SELECT
	customer_id,
    total,
    CASE
    	WHEN total IN (0.99, 1.99) THEN '1 Song'
        ELSE '2+ Songs'
    END as number_of_songs
FROM store.invoice;
Edit and Run Code