wordpress安卓下载,搜索排名seo,广州天河区房价,简述网站与网页的区别代码
select
id
,replace(comment,#xff0c;,) as comment
from comment_detail
where char_length(comment)3知识点 要注意替换的是中文逗号 由于题目说的是汉字长度大于3#xff0c;所以这里就要使用char_length()而不是length() char_length()#xff1a;单位为字…
代码
select
id
,replace(comment,,) as comment
from comment_detail
where char_length(comment)3知识点 要注意替换的是中文逗号 由于题目说的是汉字长度大于3所以这里就要使用char_length()而不是length() char_length()单位为字符不管汉字还是数字或者是字母都算是一个字符。 replace函数的使用