Sql Server中經常使用函數replicate

SQL經常使用函數之三 REPLICATE ()

按指定次數重複字符表達式。 

語法 

REPLICATE ( character_expression, integer_expression) 


參數 
character_expression 
字符數據型的字母數字表達式,或者能夠隱式轉換爲 nvarchar 或 ntext 的其餘數據類型的字母數字表達式。 

integer_expression 
能夠隱式轉換爲 int 的表達式。若是 integer_expression 爲負,將返回空字符串。

返回值 
nvarchar 或 ntextexpress

 

1 :Select Replicate('abc',2) ----------------abcabc函數

2 :Select Replicate('abc',-2) ----------------null字符串

3 :Select Replicate('abc',0)--------------- 無io

--疑問: 爲何2 和3 的不同呢須要研究class

相關文章
相關標籤/搜索