が含まれている場合、結果を注文する方法を私は夏祭りとレコードのリストの最初に注文した夏祭りを含むタイトルを表示するクエリ結果を表示したいと思います。のMySQL:特定のレコードは、特定の単語
この非常に基本的なSQLクエリは次のような結果得られます。
SELECT title FROM items
title
-----------------
Just a test
Just another test
New test
Testing
Summer festival
Summer festivals
私の目標は、次のように結果を表示することです:
title
-----------------
Summer festival
Summer festivals
Just a test
Just another test
New test
Testing
これを見てください:https://stackoverflow.com/questions/18725941/mysql-order-by-best-match –