I have a table with three column say: name,flag, and value, where name is a primary key of type string, flag contains integer, and value contains a LONGTEXT.
The LONGTEXT contains strings which may contains a word that can appear multiple times.
I know that I can search for specific string using LIKE. But I want to query the rows where a specific word say my-word appear more than once, and I want to know how many times it appeard (2,3, etc.) in each cell?
Is this possible?