标签:style color io os ar for sp div art
表明为productclass 我想查询出menupath字段中 出现 “- "(横杆)大于3次的 记录
答:1
select from productclass where menupath REGEXP ‘[[:digit:]]+-[[:digit:]]+-[[:digit:]]+-‘ 这样就可以 不过不建议用正则查询出menupath字段中 出现 “- "(横杆)大于3次的 记录
2
select * from productclass where length(menupath) - length(replace(menupath,‘-‘,‘‘)) >3
查询出menupath字段中 出现 “- "(横杆)大于3次的 记录
标签:style color io os ar for sp div art
原文地址:http://www.cnblogs.com/M-D-Luffy/p/3995751.html