标签: mysql string words
我有2个大表(1个-超过2.000.000行[id, text, count],2个-约5.000行[id,word])。 我需要在第一张表中更新[count],第二张中的每个[word]的编号都在[text]内。
[id, text, count]
[count]
[word]
[text]
我的尝试
UPDATE TABLE1 a JOIN TABLE2 b ON INSTR(CONCAT(' ',a.text,' '), CONCAT(' ',b.word,' ')) SET a.count = a.count + 1