Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Detectando spammers com MySQL


Correspondência de texto completo

Você pode implementar algo semelhante ao MATCH exemplo aqui :
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)

Então, para o seu exemplo, talvez:
SELECT id, MATCH (content) AGAINST ('your string') AS score
FROM messages 
WHERE MATCH (content) AGAINST ('your string')
    AND score > 1;

Observe que para usar essas funções seu content coluna precisaria ser um FULLTEXT índice.

O que é score neste exemplo?

É um relevance value . É calculado através do processo descrito abaixo:

Da documentação página.