SQL SyntaxFunctionsList & MapTAKEOn this pageTAKETAKE returns the first N elements from a list.SyntaxTAKE(list, count)Parameterslist – List value.count – Number of elements to take. Must be a non‑negative integer.ExamplesSELECT TAKE(CAST('[1,2,3,4,5]' AS LIST), 3);This returns [1, 2, 3].