यह जांचें कि मैंने Postgresql का उपयोग किया है, जिसमें "id", "comma_sep_string" कॉलम टेबल नाम "string_comma" के साथ हैं, जब कोई गिनती होती है तो यह रिकॉर्ड दिखाएगा और यदि गिनती शून्य है तो यह उस विशेष रिकॉर्ड को नहीं दिखाएगा और देखें दी गई क्वेरी के आउटपुट के लिए स्क्रीनशॉट
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