独立网站做外贸报价,百度网址大全旧版本,宁波效果图公司,做美女图片网站需要备案吗代码
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