Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns the string that repeats expr
n
times.
repeat(expr, n)
expr
: ASTRING
expression.n
: AnINTEGER
expression.
A STRING.
If n
is less than 1, an empty string.
> SELECT repeat('123', 2);
123123