Split MySQL column value to words and insert -
Split MySQL column value to words and insert -
i have simple task do. have long text in db column , need break long text words , set each word table, lets fts_words
: (id int, wrd varchar[255])
. can't find split()
or explode()
in mysql
, mysql
examples. found stupid "look-for-each-delimeter-substring-and-insert-each" solutions.
is there block functions in mysql
help me or more elegant cycle solution?
mysql split full-text-search explode
Comments
Post a Comment