Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Applies to:
Databricks SQL
Databricks Runtime
Returns a subset of an array.
Syntax
slice(expr, start, length)
Arguments
expr: AnARRAYexpression.start: AnINTEGERexpression.length: AnINTEGERexpression that is greater or equal to 0.
Returns
The result is of the type of expr.
The function subsets array expr starting from index start (array indices start at 1), or starting from the end if start is negative, with the specified length.
If the requested array slice does not overlap with the actual length of the array, an empty array is returned.
Examples
> SELECT slice(array(1, 2, 3, 4), 2, 2);
[2,3]
> SELECT slice(array(1, 2, 3, 4), -2, 2);
[3,4]