Mega Code Archive

 
Categories / MSSQL / String Functions
 

STUFF(string_used_as_basis, start_point, length, string_to_insert)

1> -- STUFF(string_used_as_basis, start_point, length, string_to_insert) 2> 3> SELECT STUFF("Count Dracula is a vampire",20,7,"showoff") 4> GO -------------------------- Count Dracula is a showoff (1 rows affected) 1>