नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Applies to:
Databricks SQL
Databricks Runtime
Returns an array containing element count times.
Syntax
array_repeat(element, count)
Arguments
element: An expression of any type.count: An INTEGER greater or equal to 0.
Returns
An array of the elements of the element type.
Examples
> SELECT array_repeat('123', 2);
[123, 123]