牛客网SQL题目51
查找字符串'10,A,B' 中逗号','出现的次数cnt。
代码截图:
代码示范:
select (length("10,A,B")-length(replace("10,A,B",",","")))
as cnt
代码思路:
①逗号的长度(次数) = 有逗号的字符串长度 - 没有逗号的字符串长度
②replace函数可以将“,”替换为“ ”
牛客网SQL题目51
查找字符串'10,A,B' 中逗号','出现的次数cnt。
代码截图:
代码示范:
select (length("10,A,B")-length(replace("10,A,B",",","")))
as cnt
代码思路:
①逗号的长度(次数) = 有逗号的字符串长度 - 没有逗号的字符串长度
②replace函数可以将“,”替换为“ ”