I have an sqlite database with over 400k records. I have just found that some of the text fields have carriage returns in them and I wanted to clean them out. I wanted to co
From @MarkCarter's comment on the question above:
SELECT replace(dirty_text_field, X'0A', '\n');