Mega Code Archive

 
Categories / MSSQL / String Functions
 

REPLACE()

5> 6> 7> -- REPLACE(): replace all occurrences of one character or substring 8> 9> DECLARE @Phrase VarChar(1000) 10> SET @Phrase = 'a a a a a a a a' 11> SELECT REPLACE(@Phrase, 'a', 'B') 12> 13> GO -------------------------------------------------------------------- B B B B B B B B (1 rows affected) 1>