repeat()

重复输入字符串的函数

repeat() 是一个用于生成输入字符串多个副本的系统函数。

repeat()PostgreSQL 7.0 中添加。

用法

repeat ( string text, number integer ) → text

更改历史记录

示例

repeat() 的基本执行示例

postgres=# SELECT repeat('foo', 4);
    repeat    
--------------
 foofoofoofoo
(1 row)

指定零或负长度将返回空字符串

postgres=# SELECT repeat('foo', 0);
 repeat 
--------
 
(1 row)

postgres=# SELECT repeat('foo', -1);
 repeat 
--------
 
(1 row)

分类

字符串操作系统函数

反馈

提交任何关于 "repeat()" 的评论、建议或更正 此处