最後に「\r」を一致させてから、その「\ r」を置き換えることにより、SQLから直接これらを置き換えることができます。
例:
UPDATE Person SET firstName = REPLACE(firstName, '\n', '')
where firstName LIKE '%\n'
または
UPDATE Person SET firstName = REPLACE(firstName, '\r', '')
where firstName LIKE '%\r'
最後に「\r」を一致させてから、その「\ r」を置き換えることにより、SQLから直接これらを置き換えることができます。
例:
UPDATE Person SET firstName = REPLACE(firstName, '\n', '')
where firstName LIKE '%\n'
または
UPDATE Person SET firstName = REPLACE(firstName, '\r', '')
where firstName LIKE '%\r'