Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL:come eseguire ricerche fulltext su più tabelle

Penso che poiché la ricerca full-text utilizza alcuni indici specifici, dovresti separare la tabella con 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'
);