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

MySQL:come cercare in più tabelle una stringa esistente in qualsiasi colonna

Aggiungi indici fulltext a tutte le colonne di stringa in tutte quelle tabelle, quindi unisci i risultati

select * from table1 where match(col1, col2, col3) against ('some string')
union all
select * from table2 where match(col1, col2) against ('some string')
union all
select * from table3 where match(col1, col2, col3, col4) against ('some string')
...