Mysql
 sql >> Base de données >  >> RDS >> Mysql

PHP mysql recherche plusieurs tables à l'aide d'un mot-clé

$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);

Ainsi, vous obtenez le résultat des trois tables et vous pouvez identifier quelle ligne provient de quelle table en regardant son type valeur.