This visual execution shows how to calculate the percent of total for each row using SQL window functions. The query uses SUM(sales) OVER () to get the total sales sum repeated on every row. Then it calculates each row's percent by dividing its sales by the total sum and multiplying by 100. The execution table traces each row's category, sales, total sum, and percent_of_total step by step. The variable tracker shows how values change or stay the same across rows. Key moments clarify why the total sum repeats and how the percent is computed. The quiz tests understanding of the percent values, when total sum is calculated, and how changing data affects results. This method is simple and powerful for showing parts of a whole in SQL without grouping rows.