Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、ワードプレスで求人掲示板を作成し、「マーケティング」を検索しているが、「コミッションのみ」というフレーズを含むすべての結果を削除したい場合
検索機能用の独自のクエリを記述します。SQL で LIKE 条件を使用できます。
SELECT * FROM table WHERE tag = 'marketing' and category not like 'commission only'