SQL function to get count of how many times string appears in column?(SQL函数获取字符串在列中出现的次数?)
问题描述
是否有用于计算字符串在另一个字符串或列中出现的次数的 MySQL 函数?基本上我想要:
Is there a function for MySQL that will count the number of times a string occurs in another string or column? Basically I want:
SELECT
SUB_COUNT('my word', `my_column`) AS `match_count`
FROM `table`
谢谢!
我需要知道字符串在 SELECT 中的每一行的列中出现多少次.
I need to know how many times the string appears in a column for each row in a SELECT.
推荐答案
一个明显但不可扩展的方式是这样的
An obvious but unscalable way is like this
(LENGTH(`my_column`) - LENGTH(REPLACE(`my_column`, 'my word', '')))/LENGTH('my word')
您是否调查过全文搜索在 MySQL 中?
Have you investigated Full Text search in MySQL?
这篇关于SQL函数获取字符串在列中出现的次数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL函数获取字符串在列中出现的次数?
基础教程推荐
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 在多列上分布任意行 2021-01-01
