VQ35 评论替换和去除(char_length()和replace函数的使用)

VQ35 评论替换和去除(char_length()和replace函数的使用)_第1张图片

代码

select
id
,replace(comment,',','') as comment
from comment_detail
where char_length(comment)>3

知识点

要注意替换的是中文逗号

由于题目说的是汉字长度大于3,所以这里就要使用char_length()而不是length()
char_length():单位为字符,不管汉字还是数字或者是字母都算是一个字符。

replace函数的使用

你可能感兴趣的:(sql,数据库,sql)