Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Crucial for understanding customer retention and long-term revenue sustainability.
What was our customer churn rate last month?
SELECT (COUNT(lost_customers) * 100.0 / NULLIF(COUNT(customers_start_period), 0)) AS churn_rate FROM customers WHERE period_start BETWEEN :start AND :end;