replicate复制函数

按指定次数重复字符表达式

REPLICATE ( character_expression, integer_expression) 

 character_expression         

  字符数据型的字母数字表达式,或者可以隐式转换为 nvarchar 或 ntext 的其他数据类型的字母数字表达式。

integer_expression         

  可以隐式转换为 int 的表达式。如果 integer_expression 为负,将返回空字符串。

select REPLICATE('0', 4)

/*
    ----
0000

(1 行受影响)
*/

 

posted @ 2013-11-17 21:24  王凯旋  阅读(217)  评论(0编辑  收藏  举报