หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Applies to:
Databricks SQL
Databricks Runtime
Returns the string that repeats expr n times.
Syntax
repeat(expr, n)
Arguments
expr: ASTRINGexpression.n: AnINTEGERexpression.
Returns
A STRING.
If n is less than 1, an empty string.
Examples
> SELECT repeat('123', 2);
123123