Wht is Stuff in sql ser
Answers were Sorted based on User's Feedback
Answer / lipsa
Stuff is a Sql server function.It Deletes a specified
length of characters and inserts another set of characters
at a specified starting point.
SELECT STUFF('abcdef', 2, 3, 'ijklmn')
::will return te following result::
aijklmnef
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sanjeev kumar
It is a inbuilt function that delete the character starting
from second parameter and No of character as in 3rd
parameter and place the all character of 4th parameter in
place of them.
Example:-
SELECT STUFF('sanjeev', 2,3, 'kumar')
Results:-
skumareev
Is This Answer Correct ? | 1 Yes | 0 No |
Write the syntax for stuff function in an sql server?
What is the difference between a stored procedure and a user defined function in sql server?
Which one is faster delete/truncate? Why?
What stored by the master?
What is the difference between Stored Procedures and triggers?
How can a database be repaired?
Explain what is the purpose of sql profiler in sql server?
what is a check constraint?
List the different types of joins?
Define DML and DCL statements?
Explain about Normalization?
can any one please send sql quries most used in applications.