Web Development[MySQL] Removing Carriage Returns and Line Feeds from Fields1 update table set item=replace(replace(item, char(10), ''), char(13), '') where condition; table: table nameitem: field namecondition: query condition