> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-fbfa8bee.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> توثيق دالة النافذة rank

# rank

تُسنِد ترتيبًا للصف الحالي ضمن تقسيمه مع وجود فجوات. وبعبارة أخرى، إذا كانت قيمة أي صف تصادفه مساوية لقيمة صف سابق، فسيحصل على الترتيب نفسه الذي حصل عليه ذلك الصف السابق.
ويكون ترتيب الصف التالي مساويًا لترتيب الصف السابق مضافًا إليه فجوة تساوي عدد المرات التي مُنح فيها الترتيب السابق.

توفّر الدالة [dense\_rank](/ar/reference/functions/window-functions/dense_rank) السلوك نفسه ولكن من دون فجوات في الترتيب.

**الصياغة**

```sql theme={null}
rank ()
  OVER ([[PARTITION BY grouping_column] [ORDER BY sorting_column]
        [ROWS or RANGE expression_to_bound_rows_withing_the_group]] | [window_name])
FROM table_name
WINDOW window_name as ([[PARTITION BY grouping_column] [ORDER BY sorting_column])
```

لمزيد من التفاصيل حول صياغة الدوال النافذية، راجع: [الدوال النافذية - الصياغة](/ar/reference/functions/window-functions/index#syntax).

**القيمة المعادة**

* رقم للصف الحالي ضمن تقسيمه، مع احتساب الفجوات. [UInt64](/ar/reference/data-types/int-uint).

**مثال**

يعتمد المثال التالي على المثال الوارد في الفيديو التعليمي [Ranking window functions in ClickHouse](https://youtu.be/Yku9mmBYm_4?si=XIMu1jpYucCQEoXA).

```sql title="Query" theme={null}
CREATE TABLE salaries
(
    `team` String,
    `player` String,
    `salary` UInt32,
    `position` String
)
Engine = Memory;

INSERT INTO salaries FORMAT Values
    ('Port Elizabeth Barbarians', 'Gary Chen', 195000, 'F'),
    ('New Coreystad Archdukes', 'Charles Juarez', 190000, 'F'),
    ('Port Elizabeth Barbarians', 'Michael Stanley', 150000, 'D'),
    ('New Coreystad Archdukes', 'Scott Harrison', 150000, 'D'),
    ('Port Elizabeth Barbarians', 'Robert George', 195000, 'M'),
    ('South Hampton Seagulls', 'Douglas Benson', 150000, 'M'),
    ('South Hampton Seagulls', 'James Henderson', 140000, 'M');
```

```sql title="Query" theme={null}
SELECT player, salary,
       rank() OVER (ORDER BY salary DESC) AS rank
FROM salaries;
```

```response title="Response" theme={null}
   ┌─player──────────┬─salary─┬─rank─┐
1. │ Gary Chen       │ 195000 │    1 │
2. │ Robert George   │ 195000 │    1 │
3. │ Charles Juarez  │ 190000 │    3 │
4. │ Douglas Benson  │ 150000 │    4 │
5. │ Michael Stanley │ 150000 │    4 │
6. │ Scott Harrison  │ 150000 │    4 │
7. │ James Henderson │ 140000 │    7 │
   └─────────────────┴────────┴──────┘
```
