此浏览器不再受支持。
请升级到 Microsoft Edge 以使用最新的功能、安全更新和技术支持。
array_repeat
适用于: Databricks SQL Databricks Runtime
返回包含 element count 时间的数组。
element
count
array_repeat(element, count)
元素类型的元素的数组。
> SELECT array_repeat('123', 2); [123, 123]