Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MV_SLICE

The `MV_SLICE` function extracts a subset of a multivalued field based on specified start and end index values. It is particularly useful when working with functions that produce multivalued columns in a known order, such as `SPLIT` or `MV_SORT`.
The `MV_SLICE` function extracts a subset of a multivalued field based on specified start and end index values. It is particularly useful when working with functions that produce multivalued columns in a known order, such as `SPLIT` or `MV_SORT`. It allows access of specific elements in the multivalue field array..

## Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ MV_MEDIAN: returns the median value of a multivalued field
MV_MEDIAN_ABSOLUTE_DEVIATION: returns the median absolute deviation of a multivalued field
MV_MIN: returns the min value of a multivalued field
MV_PERCENTILE: returns the specified percentile of a multivalued field
MV_SLIDE: extract a subset of a multivalued field using specified start and end index values
MV_SLICE: extract a subset of a multivalued field using specified start and end index values
MV_SORT: sorts a multivalued field in lexicographical order.
MV_SUM: returns the sum of all values of a multivalued field
MV_ZIP: combines the values from two multivalued fields with a specified delimiter
Expand Down