I've been looking at the Replace Function to use within a stored procedure, I've one problem..... the example given in the help is :
SELECT REPLACE('abcdefghicde','cde','xxx')
it replaces each letter in the first string as specified in the second string with the x's, what do I need to do if I want the whole string 'cde' matched before it replaces anything, rather than any 'c' or 'd' or 'e'?