array_repeat
array_repeat介绍
array_repeat(element, count) - 返回一个数组,其中包含重复 count 次的元素。
Examples:
> SELECT array_repeat('123', 2);
["123","123"]
Since: 2.4.0
array_repeat(element, count) - 返回一个数组,其中包含重复 count 次的元素。
Examples:
> SELECT array_repeat('123', 2);
["123","123"]
Since: 2.4.0