Mega Code Archive

 
Categories / MSSQL Tutorial / String Functions
 

Stuffing a String into a String

4> 5> SELECT STUFF ( 'www.rntsoft.com''s name is rntsoft. ', 6> 8, 7> 1, 8> 'Edgar' ) 9> GO ------------------------------------- www.javEdgar2s.com's name is rntsoft. (1 rows affected) 1>