sql >> Base de Datos >  >> RDS >> Mysql

Detección de spammers con MySQL

Coincidencia de texto completo

Podría considerar implementar algo similar a MATCH ejemplo aquí :

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)

Entonces, para su ejemplo, tal vez:

SELECT id, MATCH (content) AGAINST ('your string') AS score
FROM messages 
WHERE MATCH (content) AGAINST ('your string')
    AND score > 1;

Tenga en cuenta que para usar estas funciones su content la columna tendría que ser un FULLTEXT índice.

¿Qué es la score? en este ejemplo?

Es un relevance value . Se calcula a través del proceso que se describe a continuación:

De la documentación página.