ROW_NUMBER()
DSQL
ROW_NUMBER() OVER {<window_specification> | window_name}
BIGINT
Renvoie le numéro de ligne consécutif dans la section de l’ensemble de résultats, où 1 correspond à la première ligne de chaque section.
ROW_NUMBER
SELECT
id,
salary,
ROW_NUMBER() OVER (ORDER BY salary)
FROM employee
ORDER BY salary;
id salary row_number -- ------ ---------- 3 8.00 1 4 9.00 2 1 10.00 3 5 10.00 4 2 12.00 5