top operator
Returns the first N records sorted by the specified columns.
T | top 5 by Name desc nulls last
Syntax
T | top
NumberOfRows by
Expression [asc
| desc
] [nulls first
| nulls last
]
Arguments
- NumberOfRows: The number of rows of T to return. You can specify any numeric expression.
- Expression: A scalar expression by which to sort. The type of the values must be numeric, date, time or string.
asc
ordesc
(the default) may appear to control whether selection is actually from the "bottom" or "top" of the range.nulls first
(the default forasc
order) ornulls last
(the default fordesc
order) may appear to control whether null values will be at the beginning or the end of the range.
Tip
top 5 by name
is equivalent to the expression sort by name | take 5
both from semantic and performance perspectives.
See also
- Use top-nested operator to produce hierarchical (nested) top results.