比如:某字段是string, 包含有若干字符串'string_1',如何查找‘string_1’在 string里出现的次数?用什么函数?
select count(string)from tablewhere string='string_1'看看行不行?