Проверете това, използвал съм Postgresql, имайки колони "id", "comma_sep_string" с име на таблица "string_comma", когато има преброяване, той ще покаже този запис и ако count е нула, няма да покаже този конкретен запис и ще видите екранната снимка за изхода на дадената заявка
select temp1.id, temp1.comma_sep_string, sum(count) from
(select temp.id, temp.comma_sep_string, temp.years, count(*) as count
from
(SELECT
ID, comma_sep_string,
regexp_split_to_table(comma_sep_string, E',') AS years
FROM string_comma) as temp
where temp.years::int > 1980
group by temp.id, temp.years, temp.comma_sep_string) as temp1
group by temp1.id, temp1.comma_sep_string