Zvažte:
select *
from tab1
where char_length(type) - char_length(replace(type, ',', '')) + 1 = qta
Výraz char_length(type) - char_length(replace(type, ',', ''))
vám dává počet čárek v řetězci. Přidání 1
to vám dá počet slov v řetězci.
id | cod | type | qta -: | :-- | :---------- | --: 1 | aaa | aaa,bbb,ccc | 3 2 | aaa | ddd | 1 4 | aaa | ggg,hhh | 2