all spaces
को बदलने के लिए :
UPDATE `table` SET `col_name` = REPLACE(`col_name`, ' ', '')
सभी tabs
को हटाने के लिए वर्ण :
UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\t', '' )
सभी new line
को हटाने के लिए वर्ण :
UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\n', '')
http://dev.mysql.com/doc /refman/5.0/hi/string-functions.html#function_replace
first and last space(s)
को निकालने के लिए कॉलम का :
UPDATE `table` SET `col_name` = TRIM(`col_name`)
http://dev.mysql.com/doc /refman/5.0/hi/string-functions.html#function_trim