目录

SQL服务器 REPLICATE() 函数

示例

重复一个字符串:

SELECT REPLICATE('SQL Tutorial', 5);
亲自试一试 »

定义和用法

REPLICATE() 函数将字符串重复指定的次数。

语法

REPLICATE( string, integer)

参数值

Parameter Description
string Required. The string to repeat
integer Required. The number of times to repeat the string

技术细节

工作于: SQL Server(从 2008 年开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库

更多示例

示例

重复 CustomerName 中的文本两次:

SELECT REPLICATE(CustomerName, 2)
FROM Customers;
亲自试一试 »