我有一个字符串数组和一个带有文本类型列的表。我想列出表中任何行的指定列中出现了多少个字符串。有没有办法用一个查询来做到这一点?
Example;
$strings = array('test', 'sth');
Table;
id | someTextColumn
-------------------
1 | abc tests
2 | sthab
3 | teststh
4 | abcd
5 | sth
Expected result;
str | occurences
-----------------
test | 2
sth | 3