Hi All,
I've looked up the MySQl function of Replace, but am a bit puzzled. I have a results page that can be downloaded to a .txt file. Once downloaded, the file is then imported into ACT! for client use. The problem is that in the comments field, hard returns are screwing up the import. ACT! thinks this is a new record.
I've fixed the problem with PHP for future input, but how can I go into MySql and replace all occurrence of hard returns already there? According to the mysql web site, you cannot use primary key fields? This got 0 results:
UPDATE contact SET comments = REPLACE(comments, "\n", " ") WHERE id=319
Any help is deeply appreciated!
Geogal