个人网站可以做经营性网站,徐州自动seo,高淳做网站价格,南昌的网站建设公司代码
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