Rozważ:
select *
from tab1
where char_length(type) - char_length(replace(type, ',', '')) + 1 = qta
Wyrażenie char_length(type) - char_length(replace(type, ',', ''))
podaje liczbę przecinków w ciągu. Dodanie 1
to daje liczbę słów w ciągu.
id | cod | type | qta -: | :-- | :---------- | --: 1 | aaa | aaa,bbb,ccc | 3 2 | aaa | ddd | 1 4 | aaa | ggg,hhh | 2