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