獨立網(wǎng)站做外貿(mào)報價,青島谷歌seo,可以訪問任何網(wǎng)站的瀏覽器,創(chuàng)意網(wǎng)站建設(shè)代碼
select
id
,replace(comment,,,) as comment
from comment_detail
where char_length(comment)>3知識點 要注意替換的是中文逗號 由于題目說的是漢字長度大于3,所以這里就要使用char_length()而不是length() char_length():單位為字…
代碼
select
id
,replace(comment,',','')ascommentfrom comment_detail
where char_length(comment)>3