Mysql:Trim all fields in database

前端 未结 7 1771
一生所求
一生所求 2021-02-12 08:20
UPDATE mytable SET mycolumn= LTRIM(RTRIM(mycolumn));

works fine on trimming columns removing trailer spaces, but how can i adjust it to trim all column

7条回答
  •  执念已碎
    2021-02-12 08:50

    UPDATE mytable SET 
    mycolumn = LTRIM(RTRIM(mycolumn)), 
    mycolumn2 = LTRIM(RTRIM(mycolumn2)) 
    

    and so on, and so forth.

提交回复
热议问题