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

PHP mysql pesquisa várias tabelas usando uma palavra-chave

$query = "(SELECT content, title, 'msg' as type FROM messages WHERE content LIKE '%" . 
           $keyword . "%' OR title LIKE '%" . $keyword ."%') 
           UNION
           (SELECT content, title, 'topic' as type FROM topics WHERE content LIKE '%" . 
           $keyword . "%' OR title LIKE '%" . $keyword ."%') 
           UNION
           (SELECT content, title, 'comment' as type FROM comments WHERE content LIKE '%" . 
           $keyword . "%' OR title LIKE '%" . $keyword ."%')";

mysql_query($query);

Então, você está obtendo resultados de todas as três tabelas e pode identificar qual linha veio de qual tabela observando seu type valor.