0

ユーザーからの新しいタグを受け入れるタグテーブルを作成しようとしています。

「the」や「that」などの一般的な単語がタグ テーブルに挿入されないように除外したい

私の考えは、一般的な単語テーブルを作成し、新しいタグを挿入するときにそれらを除外することです。

これは私がPHPで作業する方法です:

//get the general words from database and convert them into ary_general

//execlude the general words from the new words and store the rest into ary_tags

//insert the ary_tags words into tags table if doesn't exist.

しかし、可能であれば、1つのステートメントですべてを行いたいと思います:

例:

出典:「プログラミングはかっこいい」

tbl_general_words
do
you
that
is

結果: 「考える、プログラミングする、かっこいい」

4

2 に答える 2