STUFF(string_used_as_basis, start_point, length, string_to_insert) : STUFF « String Functions « SQL Server / T-SQL






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>
           
       








Related examples in the same category

1.STUFF(): replace a portion of a string with another string