I would like to replace characters within my WHERE statement that have the first character of S,
right now all i have is the following:
WHERE i1.CODE = REPLACE(i2.CODE, 'S', 'U')
but this would replace all S's with U's. I just wish to replace the S with a U only when the S is the first character
thank you!