Volltextübereinstimmung
Sie könnten etwas Ähnliches wie MATCH
implementieren Beispiel hier
:
mysql> SELECT id, body, MATCH (title,body) AGAINST
-> ('Security implications of running MySQL as root') AS score
-> FROM articles WHERE MATCH (title,body) AGAINST
-> ('Security implications of running MySQL as root');
+----+-------------------------------------+-----------------+
| id | body | score |
+----+-------------------------------------+-----------------+
| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |
| 6 | When configured properly, MySQL ... | 1.3114095926285 |
+----+-------------------------------------+-----------------+
2 rows in set (0.00 sec)
Also für Ihr Beispiel vielleicht:
SELECT id, MATCH (content) AGAINST ('your string') AS score
FROM messages
WHERE MATCH (content) AGAINST ('your string')
AND score > 1;
Beachten Sie, dass Sie zur Verwendung dieser Funktionen Ihren content
verwenden müssen Spalte müsste ein FULLTEXT
sein index.
Was ist score
in diesem Beispiel?
Es ist ein relevance value
. Es wird durch den unten beschriebenen Prozess berechnet:
Aus der Dokumentation Seite.