SQL SyntaxFunctionsList & MapSKIPOn this pageSKIP SKIP drops the first N elements from a list and returns the remaining values. Syntax SKIP(list, count) Parameters list – List value. count – Number of elements to drop. Must be a non‑negative integer. Examples SELECT SKIP(CAST('[1,2,3,4,5]' AS LIST), 2); This returns [3, 4, 5].