SQL——根据字段包含值,统计条数(全文索引、CONTAINS、instr)

文章介绍了如何通过全文索引的CONTAINS函数和instr函数在数据库中对my_column字段的值进行统计,如0,1,2等。首先,删除并创建全文索引,然后通过一系列CASE语句统计不同值的条数。此外,还提到了不同的分词器选项,如CHINESE_LEXER和ENGLISH_LEXER。另一种方法是使用instr函数检查字段值中是否包含特定字符串。
摘要由CSDN通过智能技术生成

根据字段包含值,统计条数

例如my_column字段值可能为:“0,1,2,3,4,5,…”
目标,统计my_column中的值为0,为1,为2…的各个条数

方式一、使用CONTAINS

该功能建立在全文索引之上。

--删除全文索引
DROP CONTEXT INDEX IF EXISTS INDEX_STATISTICAL ON MY_DEV.my_table;
--创建全文索引,并增量填充。用于***情况统计
CREATE CONTEXT INDEX INDEX_STATISTICAL ON MY_DEV.my_table(my_column) LEXER ENGLISH_LEXER SYNC TRANSACTION;

--统计
select 
sum(case when is_del = 0 then 1 else 0 end) as personTotal,
sum(case when CONTAINS(my_column,'0') then 1 else 0 end) as democratic,
sum(case when CONTAINS(my_column,'1') then 1 else 0 end) as nonparty,
sum(case when CONTAINS(my_column,'2') then 1 else 0 end) as nonpartyIntellectuals,
sum(case when CONTAINS(my_column,'3') then 1 else 0 end) as minority,
sum(case when CONTAINS(my_column,'4') then 1 else 0 end) as religiousStaff,
sum(case when CONTAINS(my_column,'5') then 1 else 0 end) as overseasStudents,
sum(case when CONTAINS(my_column,'6') then 1 else 0 end) as hk,
sum(case when CONTAINS(my_column,'7') then 1 else 0 end) as macao,
sum(case when CONTAINS(my_column,'8') then 1 else 0 end) as taiwan,
sum(case when CONTAINS(my_column,'9') then 1 else 0 end) as taiwanFamily,
sum(case when CONTAINS(my_column,'10') then 1 else 0 end) as overseasChinese,
sum(case when CONTAINS(my_column,'11') then 1 else 0 end) as returnedOverseasChinese,
sum(case when CONTAINS(my_column,'12') then 1 else 0 end) as dependentsOverseasChinese
from MY_DEV.my_table
where is_del = 0;

其中,分词参数如下:

  • CHINESE_LEXER,中文最少分词;
  • CHINESE_VGRAM_LEXER,机械双字分词;
  • CHINESE_FP_LEXER,中文最多分词;
  • ENGLISH_LEXER,英文分词;
  • DEFAULT_LEXER,中英文最少分词,也是默认分词;

方式二、使用instr

select sum(case when instr(my_column,'123')>0 then 1 else 0 end) as ca from My_DEV.my_table;

👉全文索引,友情参考链接:(全文索引)https://blog.csdn.net/Today_He/article/details/130198030




评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

陈年_H

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值