REPLACE new line character in MYSql not working

后端 未结 5 1242

I executed following query and for some reason its not replacing new line character in database . It says Rows matched 1 but no change . What can be wrong ?

mysq         


        
5条回答
  •  再見小時候
    2021-02-03 21:37

    the REPLACE function is case sensitive, i think it belongs MySql server version

    description=REPLACE(description, 'Videosite', 'video.5la.net') is different result with description=REPLACE(description, 'VideoSite', 'video.5la.net')

提交回复
热议问题