This visual execution shows how SQL performs conditional aggregation by applying conditions inside aggregate functions like COUNT and SUM. Each row is checked against conditions: if status equals 'active', the count increases by one; if amount is greater than 100, the sum adds that amount. The execution table tracks each row's data, condition results, and running totals. The variable tracker shows how active_count and big_sales change after each row. Key moments clarify why only certain rows affect counts or sums. The quiz tests understanding of running totals and condition effects. The snapshot summarizes the pattern: use CASE inside aggregates to count or sum conditionally in one query.