mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-27 08:37:18 -04:00
36 lines
894 B
Text
36 lines
894 B
Text
[[esql-sort]]
|
|
=== `SORT`
|
|
Use the `SORT` command to sort rows on one or more fields:
|
|
|
|
[source,esql]
|
|
----
|
|
include::{esql-specs}/docs.csv-spec[tag=sort]
|
|
----
|
|
|
|
The default sort order is ascending. Set an explicit sort order using `ASC` or
|
|
`DESC`:
|
|
|
|
[source,esql]
|
|
----
|
|
include::{esql-specs}/docs.csv-spec[tag=sortDesc]
|
|
----
|
|
|
|
Two rows with the same sort key are considered equal. You can provide additional
|
|
sort expressions to act as tie breakers:
|
|
|
|
[source,esql]
|
|
----
|
|
include::{esql-specs}/docs.csv-spec[tag=sortTie]
|
|
----
|
|
|
|
[discrete]
|
|
==== `null` values
|
|
By default, `null` values are treated as being larger than any other value. With
|
|
an ascending sort order, `null` values are sorted last, and with a descending
|
|
sort order, `null` values are sorted first. You can change that by providing
|
|
`NULLS FIRST` or `NULLS LAST`:
|
|
|
|
[source,esql]
|
|
----
|
|
include::{esql-specs}/docs.csv-spec[tag=sortNullsFirst]
|
|
----
|