Which is not parameters for STUFF function
-
First string
-
Second string
-
Start position
-
End position
D
Correct answer
Explanation
The STUFF function in SQL Server uses four parameters: the source string (first string), start position (where deletion begins), length (number of characters to delete), and the replacement string (second string). There is no 'end position' parameter - the function uses length instead to determine how many characters to remove before inserting the replacement string.