123456789101112131415161718192021222324252627282930 |
- [[esql-mv_min]]
- === `MV_MIN`
- Converts a multivalued field into a single valued field containing the minimum value. For example:
- [source,esql]
- ----
- include::{esql-specs}/math.csv-spec[tag=mv_min]
- ----
- Returns:
- [%header,format=dsv,separator=|]
- |===
- include::{esql-specs}/math.csv-spec[tag=mv_min-result]
- |===
- It can be used by any field type, including `keyword` fields. In that case picks the
- first string, comparing their utf-8 representation byte by byte:
- [source,esql]
- ----
- include::{esql-specs}/string.csv-spec[tag=mv_min]
- ----
- Returns:
- [%header,format=dsv,separator=|]
- |===
- include::{esql-specs}/string.csv-spec[tag=mv_min-result]
- |===
|