This visual execution shows how the window frame specification ROWS BETWEEN works in SQL. We start with an ordered dataset by emp_id. For each row, the frame is defined as one row before and one row after the current row. The frame rows are selected accordingly, shrinking at the edges where preceding or following rows do not exist. The SUM function is applied over the salaries in the frame, producing a running sum that includes neighboring rows. The execution table traces each step, showing the current row, frame rows, and the sum result. The variable tracker shows how the current emp_id, frame rows, and sum change step-by-step. Key moments clarify why frames shrink at dataset edges. The quiz tests understanding of frame contents and sums at specific steps. This helps beginners see how window frames slide and aggregate data in SQL.