tags:

views:

21

answers:

1

My Data has "enter" mark in one of the columns. How do I remove it and display the text on a single line? phpMyAdmin does show that word on 2 lines.

A: 
update table set field=replace(field, "\n", "");
cherouvim
I had to do this... update table set field=replace(replace(field, "\n", ""), '\r', '')
shantanuo