From 74754a7b33c35bdc4714effb36a3a7b166814b2b Mon Sep 17 00:00:00 2001 From: goodroot <9484709+goodroot@users.noreply.github.com> Date: Mon, 25 Nov 2024 13:36:37 -0800 Subject: [PATCH] anchor links --- documentation/reference/function/window.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/documentation/reference/function/window.md b/documentation/reference/function/window.md index 63363230..4b14a085 100644 --- a/documentation/reference/function/window.md +++ b/documentation/reference/function/window.md @@ -99,15 +99,15 @@ Where: ### Aggregate window functions -- `avg()` – Calculates the average within a window -- `sum()` – Calculates the sum within a window -- `count()` – Counts rows or non-null values -- `first_value()` – Retrieves the first value in a window +- [`avg()`](#avg) – Calculates the average within a window +- [`sum()`](#cumulative-sum) – Calculates the sum within a window +- [`count()`](#count) – Counts rows or non-null values +- [`first_value()`](#first_value) – Retrieves the first value in a window ### Window-only functions -- `rank()` – Assigns a rank to rows -- `row_number()` – Assigns sequential numbers to rows +- [`rank()`](#rank) – Assigns a rank to rows +- [`row_number()`](#row_number) – Assigns sequential numbers to rows :::note Window-only functions: