Overweeg:
select *
from tab1
where char_length(type) - char_length(replace(type, ',', '')) + 1 = qta
Uitdrukking char_length(type) - char_length(replace(type, ',', ''))
geeft u het aantal komma's in de tekenreeks. 1
toevoegen dat geeft je het aantal woorden in de string.
id | cod | type | qta -: | :-- | :---------- | --: 1 | aaa | aaa,bbb,ccc | 3 2 | aaa | ddd | 1 4 | aaa | ggg,hhh | 2