美文网首页
一个字段有多个值,值通过分隔符分割

一个字段有多个值,值通过分隔符分割

作者: 盗生一 | 来源:发表于2020-11-12 19:23 被阅读0次

-- 可以拆分为多条数据

SELECT distinct REGEXP_SUBSTR(t.cym, '[^、]+', 1, level) cym, t.* from person_info t connect by level <= regexp_count(t.cym, '、') + 1;

-- 人员统计
select cym, count(1) from (SELECT distinct REGEXP_SUBSTR(t.cym, '[^、]+', 1, level) cym, t.ryxxbz, t.xm from person_info t connect by level <= regexp_count(t.cym, '、') + 1) group by cym;

-- 人员统计
select 

SUM( CASE WHEN cym = '重点' THEN  1 ELSE 0 END),  --男性人口  
SUM( CASE WHEN cym <> '重点' THEN  1 ELSE 0 END)   --女性人口  

from (SELECT distinct REGEXP_SUBSTR(t.cym, '[^、]+', 1, level) cym, t.ryxxbz, t.xm from person_info t connect by level <= regexp_count(t.cym, '、') + 1) group by cym;

select 

 SUM( CASE WHEN cym = '重点' THEN  1 ELSE 0 END),  --男性人口  
SUM( CASE WHEN cym <> '重点' THEN  1 ELSE 0 END)   --女性人口  

from (SELECT distinct REGEXP_SUBSTR(t.cym, '[^、]+', 1, level) cym, t.ryxxbz, t.xm from person_info t connect by level <= regexp_count(t.cym, '、') + 1) group by cym;

相关文章

网友评论

      本文标题:一个字段有多个值,值通过分隔符分割

      本文链接:https://www.haomeiwen.com/subject/dnnpbktx.html