计数列逗号分隔值 oracle

Count column comma delimited values oracle

是否可以在 oracle 数据库中按逗号分隔值进行计数和分组 table?这是一个 table 数据示例:

id | user | title | 
1  | foo  | a,b,c |
2  | bar  | a,d   |
3  | tee  | b     |

预期结果为:

title | count
a     | 2
b     | 2
c     | 1
d     | 1

我想像这样使用 concat:

SELECT a.title FROM Account a WHERE concat(',', a.title, ',') LIKE 'a' OR concat(',', a.title, ',') LIKE 'b' ... GROUP BY a.title?

但我正在 invalid number of arguments 进行连接。标题值是预定义的,因此我不介意是否必须在查询中列出所有这些值。非常感谢任何帮助。

将标题拆分成行并计算它们。

SQL> with test (id, title) as
  2    (select 1, 'a,b,c' from dual union all
  3     select 2, 'a,d'   from dual union all
  4     select 3, 'b'     from dual
  5    ),
  6  temp as
  7    (select regexp_substr(title, '[^,]', 1, column_value) val
  8     from test cross join table(cast(multiset(select level from dual
  9                                              connect by level <= regexp_count(title, ',') + 1
 10                                             ) as sys.odcinumberlist))
 11    )
 12  select val as title,
 13         count(*)
 14  From temp
 15  group by val
 16  order by val;

TITLE                  COUNT(*)
-------------------- ----------
a                             2
b                             2
c                             1
d                             1

SQL>

如果标题不是那么简单,则修改第 7 行中的 REGEXP_SUBSTR(添加 + 符号),例如

SQL> with test (id, title) as
  2    (select 1, 'Robin Hood,Avatar,Star Wars Episode III' from dual union all
  3     select 2, 'Mickey Mouse,Avatar'   from dual union all
  4     select 3, 'The Godfather'     from dual
  5    ),
  6  temp as
  7    (select regexp_substr(title, '[^,]+', 1, column_value) val
  8     from test cross join table(cast(multiset(select level from dual
  9                                              connect by level <= regexp_count(title, ',') + 1
 10                                             ) as sys.odcinumberlist))
 11    )
 12  select val as title,
 13         count(*)
 14  From temp
 15  group by val
 16  order by val;

TITLE                            COUNT(*)
------------------------------ ----------
Avatar                                  2
Mickey Mouse                            1
Robin Hood                              1
Star Wars Episode III                   1
The Godfather                           1

SQL>

这使用简单的字符串函数和递归子查询分解,可能比使用正则表达式和相关连接更快:

Oracle 设置:

CREATE TABLE account ( id, "user", title ) AS
  SELECT 1, 'foo', 'a,b,c' FROM DUAL UNION ALL
  SELECT 2, 'bar', 'a,d'   FROM DUAL UNION ALL
  SELECT 3, 'tee', 'b'     FROM DUAL;

查询:

WITH positions ( title, start_pos, end_pos ) AS (
  SELECT title,
         1,
         INSTR( title, ',', 1 )
  FROM   account
UNION ALL
  SELECT title,
         end_pos + 1,
         INSTR( title, ',', end_pos + 1 )
  FROM   positions
  WHERE  end_pos > 0
),
items ( item ) AS (
  SELECT CASE end_pos
         WHEN 0
         THEN SUBSTR( title, start_pos )
         ELSE SUBSTR( title, start_pos, end_pos - start_pos )
         END
  FROM   positions
)
SELECT item,
       COUNT(*)
FROM   items
GROUP BY item
ORDER BY item;

输出:

ITEM | COUNT(*)
:--- | -------:
a    |        2
b    |        2
c    |        1
d    |        1

db<>fiddle here