LoslegenKostenlos loslegen

Aggregating finances

In this exercise you would like to learn more about the differences in payments between the customers who are active and those who are not.

Diese Übung ist Teil des Kurses

Applying SQL to Real-World Problems

Kurs anzeigen

Anleitung zur Übung

  • Find out the differences in their total number of payments by COUNT()ing the payment_id.
  • Find out the differences in their average payments by using AVG().
  • Find out the differences in their total payments by using SUM().
  • Ensure the aggregate functions GROUP BY whether customer payments are active.

Interaktive Übung

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

SELECT active, 
       ___ AS num_transactions, 
       ___ AS avg_amount, 
       ___ AS total_amount
FROM payment AS p
INNER JOIN customer AS c
  ON p.customer_id = c.customer_id
GROUP BY ___;
Code bearbeiten und ausführen