Thursday, January 2, 2014

Strip newlines from entries in MySQL

update `org` set `orgName` = replace(`orgName`,"\n","");

org is the table, orgName is the column.