to ammend custom text in a selected position in sql server,
use the following sql query
SELECT STUFF ('BLABLA IS A TEST', 8, 2, 'replaced')
return value : BLABLA replaced A TEST
use the following sql query
return value : BLABLA replaced A TEST
No comments:
Post a Comment