聊城做网站的公司价位,芜湖服装网站建设,做网站一般哪里找,三只松鼠的网站建设的意义代码
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