description |
---|
Repeats the given string n times. |
- expression: String/characters to repeat.
- nTimes: Number of times the string should be repeated.
Examples
{% code title="REPEATSTR example" %}
SELECT REPEATSTR('a ', 5)
-- a a a a a
{% endcode %}
description |
---|
Repeats the given string n times. |
Examples
{% code title="REPEATSTR example" %}
SELECT REPEATSTR('a ', 5)
-- a a a a a
{% endcode %}