Get started
Load & manage data
Work with data
Administration
Reference & resources
CLUSTER BY
mask
ROW FILTER
Atualizado 14/02/2025
Send us feedback
array_repeat
Applies to: Databricks SQL Databricks Runtime
Returns an array containing element count times.
element
count
array_repeat(element, count)
element: An expression of any type.
count: An INTEGER greater or equal to 0.
An array of the elements of the element type.
> SELECT array_repeat('123', 2); [123, 123]
array function