题解 | #查找字符串 10,A,B 中逗号,出现的次数cnt#
思路:将原字符串中“,”替换为空并计算长度,与原字符串长的的差值即为“,”出现的次数
select length("10,A,B")-length(replace("10,A,B",',','')) cnt
select length("10,A,B")-length(replace("10,A,B",',','')) cnt
相关推荐