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!
Este exercício faz parte do curso
Data Manipulation in Snowflake
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
-- 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;