LIST_SLICE
list_slice(list, begin, end, step)
Section titled “list_slice(list, begin, end, step)”- list: ANY
- begin: ANY
- end: ANY
- step: BIGINT
Example
Section titled “Example”SELECT list_slice([4, 5, 6], 1, 3, 2);SELECT list_slice([4, 5, 6], 1, 3, 2);