计算文本字段中的预期单词数

时间:2018-07-12 11:07:44

标签: mysql string words

我有2个大表(1个-超过2.000.000行[id, text, count],2个-约5.000行[id,word])。 我需要在第一张表中更新[count],第二张中的每个[word]的编号都在[text]内。

我的尝试

UPDATE TABLE1 a 
JOIN TABLE2 b ON INSTR(CONCAT(' ',a.text,' '), CONCAT(' ',b.word,' ')) 
SET a.count = a.count + 1

0 个答案:

没有答案