Count distinct text contain in columns which have various texts – Mysql

huangapple go评论55阅读模式
英文:

Count distinct text contain in columns which have various texts - Mysql

问题

I have a table:

Rank Title Genre
1 Guardians of the Galaxy Action,Adventure,Sci-Fi
2 Prometheus Adventure,Mystery,Sci-Fi
3 Split Horror,Thriller
4 Sing Animation,Comedy,Family
5 Suicide Squad Action,Adventure,Fantasy

Is there any function that I can count how many distinct text contain in these columns? And how many columns contain each text?
I am using MYSQL

Like

Total distinct text
10

And

Action Adventure Sci-Fi Mystery Horror Thriller Animation Family Comedy Fantasy
2 3 2 1 1 1 1 1 1 1
英文:

I have a table:

Rank Title Genre
1 Guardians of the Galaxy Action,Adventure,Sci-Fi
2 Prometheus Adventure,Mystery,Sci-Fi
3 Split Horror,Thriller
4 Sing Animation,Comedy,Family
5 Suicide Squad Action,Adventure,Fantasy

Is there any function that I can count how many distinct text contain in theses columns? And how many columns contain each text?
I am using MYSQL

Like

Total distinct text
10

And

Action Adventure Sci-Fi Mystery Horror Thriller Animation Family Comedy Fantasy
2 3 2 1 1 1 1 1 1 1

答案1

得分: 0

To Split comma separated string into rows concatenate square brackets ([]) around your string to make it into a JSON array. Then use JSON_TABLE to convert it into a table.

要将逗号分隔的字符串拆分为行,请在字符串周围连接方括号([]),使其成为JSON数组。然后使用JSON_TABLE将其转换为表。

To count distinct text use this query :

要计算不同的文本,请使用以下查询:

with cte as (
SELECT t.Rank_, j.genre
FROM mytable t
CROSS JOIN JSON_TABLE(
CONCAT('[', REPLACE(Genre, ',', '","'), ']'),
'$[*]' COLUMNS (genre TEXT PATH '$')
) j
)
select count(distinct genre) as 'Total distinct text'
from cte

要计算不同文本的数量,请使用此查询:

with cte as (
SELECT t.Rank_, j.genre
FROM mytable t
CROSS JOIN JSON_TABLE(
CONCAT('[', REPLACE(Genre, ',', '","'), ']'),
'$[*]' COLUMNS (genre TEXT PATH '$')
) j
)
select count(distinct genre) as 'Total distinct text'
from cte

To count per genre :

按流派计数:

with cte as (
SELECT t.Rank_, j.genre
FROM mytable t
CROSS JOIN JSON_TABLE(
CONCAT('[', REPLACE(Genre, ',', '","'), ']'),
'$[*]' COLUMNS (genre TEXT PATH '$')
) j
)
select genre, count(1) as 'count'
from cte
group by genre

您可以按流派计数:

with cte as (
SELECT t.Rank_, j.genre
FROM mytable t
CROSS JOIN JSON_TABLE(
CONCAT('[', REPLACE(Genre, ',', '","'), ']'),
'$[*]' COLUMNS (genre TEXT PATH '$')
) j
)
select genre, count(1) as 'count'
from cte
group by genre

You can use the conditional aggregation to Pivot rows into columns :

您可以使用条件聚合将行旋转为列:

with cte as (
SELECT t.Rank_, j.genre
FROM mytable t
CROSS JOIN JSON_TABLE(
CONCAT('[', REPLACE(Genre, ',', '","'), ']'),
'$[*]' COLUMNS (genre TEXT PATH '$')
) j
),
cte2 as (
select count(case when genre = 'Action' then 1 end) as 'Action',
count(case when genre = 'Adventure' then 1 end) as 'Adventure',
count(case when genre = 'Sci-Fi' then 1 end) as 'Sci-Fi'
from cte
group by genre
)
select max(Action) AS 'Action', max(Adventure) as 'Adventure', max(Sci-Fi) as 'Sci-Fi'
from cte2

您可以使用条件聚合将行旋转为列:

with cte as (
SELECT t.Rank_, j.genre
FROM mytable t
CROSS JOIN JSON_TABLE(
CONCAT('[', REPLACE(Genre, ',', '","'), ']'),
'$[*]' COLUMNS (genre TEXT PATH '$')
) j
),
cte2 as (
select count(case when genre = 'Action' then 1 end) as 'Action',
count(case when genre = 'Adventure' then 1 end) as 'Adventure',
count(case when genre = 'Sci-Fi' then 1 end) as 'Sci-Fi'
from cte
group by genre
)
select max(Action) AS 'Action', max(Adventure) as 'Adventure', max(Sci-Fi) as 'Sci-Fi'
from cte2

Demo here

演示在这里

英文:

To Split comma separated string into rows concatenate square brackets ([]) around your string to make it into a JSON array. Then use JSON_TABLE to convert it into a table.

To count distinct text use this query :

with cte as (
  SELECT t.Rank_, j.genre
  FROM mytable t
  CROSS JOIN JSON_TABLE(
                       CONCAT('["', REPLACE(Genre, ',', '","'), '"]'),
                      '$[*]' COLUMNS (genre TEXT PATH '$')
                      ) j
)
select count(distinct genre) as 'Total distinct text'
from cte

To count per genre :

    with cte as (
      SELECT t.Rank_, j.genre
      FROM mytable t
      CROSS JOIN JSON_TABLE(
                           CONCAT('["', REPLACE(Genre, ',', '","'), '"]'),
                          '$[*]' COLUMNS (genre TEXT PATH '$')
                          ) j
    )
    select genre, count(1) as 'count'
    from cte
    group by genre

You can use the conditional aggregation to Pivot rows into columns :

with cte as (
  SELECT t.Rank_, j.genre
  FROM mytable t
  CROSS JOIN JSON_TABLE(
                       CONCAT('["', REPLACE(Genre, ',', '","'), '"]'),
                      '$[*]' COLUMNS (genre TEXT PATH '$')
                      ) j
),
cte2 as (
       select count(case when genre = 'Action' then 1 end) as 'Action',
              count(case when genre = 'Adventure' then 1 end) as 'Adventure',
              count(case when genre = 'Sci-Fi' then 1 end) as 'Sci-Fi'
       from cte
       group by genre
)
select max(Action) AS 'Action', max(Adventure) as 'Adventure', max(`Sci-Fi`) as 'Sci-Fi'
from cte2

Demo here

huangapple
  • 本文由 发表于 2023年5月7日 04:23:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/76190966.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定