Pencocokan Teks Lengkap
Anda dapat melihat penerapan sesuatu yang mirip dengan MATCH
contoh di sini
:
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)
Jadi untuk contoh Anda, mungkin:
SELECT id, MATCH (content) AGAINST ('your string') AS score
FROM messages
WHERE MATCH (content) AGAINST ('your string')
AND score > 1;
Perhatikan bahwa untuk menggunakan fungsi ini content
kolom harus berupa FULLTEXT
indeks.
Apa itu score
dalam contoh ini?
Ini adalah relevance value
. Ini dihitung melalui proses yang dijelaskan di bawah ini:
Dari dokumentasi halaman.