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

MySQL:como fazer pesquisa de texto completo em várias tabelas


Acho que, como a pesquisa de texto completo usa alguns índices específicos, você deve separar a tabela por OR
SELECT *
FROM testtable t1, testtable2 t2
WHERE MATCH (
t1.firstName, t1.lastName, t1.details
)
AGAINST (
'founder'
) OR MATCH( t2.firstName, t2.lastName, t2.details) AGAINST (
'founder'
);