I have a word spelled incorrectly in a field in many rows in a table. Is there a way to find and replace that word in the rows and leave the rest of the rows and field contents the same?
Dear Steve;
UPDATE table SET column = (SRPL(column,'bad word','good word',1))
Best Regards,
Mike

