web-dev-qa-db-ja.com

PHP mysqlはキーワードを使用して複数のテーブルを検索します

データベースには次の3つのテーブルがあります。

messages
topics
comments

これらの各テーブルには、「コンテンツ」と「タイトル」という2つのフィールドがあります。 sqlステートメントで「いいね」を使用して、「messages.content」、「messages.title」、「topics.content」、「topics.title」、「comments.content」、および「comments」を確認できるようにしたいと思います。キーワードを使用してタイトル。

これまでのところ、私のクエリは1つのテーブルのみから結果を見つけることができます。

mysql_query("SELECT * FROM messages 
WHERE content LIKE '%" . $keyword . "%' 
OR title LIKE '%" . $keyword ."%'");

また、複数のテーブルから結果を取得したら、どの結果がどのテーブルからであるかをどのように確認できますか?

どんな助けも大歓迎です!

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

したがって、3つのテーブルすべてから結果が得られ、type値を調べることで、どの行がどのテーブルから来たかを特定できます。

85
MD Sayem Ahmed

おそらく探しているのは、UNIONコマンドです。

SELECT id, 'messages' as 'table' FROM messages 
WHERE content LIKE '%keyword%' 
OR title LIKE '%keyword%'
UNION
SELECT id, 'topics' as 'table' FROM topics
WHERE content LIKE '%keyword%' 
OR title LIKE '%keyword%'
UNION
SELECT id, 'comments' as 'table' FROM comments
WHERE content LIKE '%keyword%' 
OR title LIKE '%keyword%'
7
evan

使用する他のテーブルでの2つの検索:

SELECT `categories`.`title`, `posts`.`title` WHERE `categories`.`title` LIKE {$a} OR `posts`.`title` LIKE {$a}

[〜#〜] categories [〜#〜]および[〜#〜] posts [〜#〜]はデータベースのテーブルです。

2
Bruno Alano

HTML検索フォーム:

<div class="header_top_right">
    <form action="search.php" method="GET" class="search_form">
        <input type="text" placeholder="Text to Search.." name="search">
        <input type="submit" class="btn btn-default" value="">
    </form>
</div>

Search.php:

<?php
    if (isset($_GET['search']) || !empty($_GET['search'])) {
        $search = mysqli_real_escape_string($db->link, $fm->validation($_GET['search']));
    }
    else{
        header("Location:404.php");
    }
?>
<?php
    $query = "SELECT * FROM news_post WHERE title LIKE '%$search%' OR body LIKE '%$search%' OR tags LIKE '%search%'";
    $post = $db->select($query);
    if ($post) {
        while ($result = $post->fetch_assoc()) {
            echo"Database data like, $result['title']";
        }
    }
    else{
        echo "result Not found";
    }

search.phpにdatabase.phpを含める

class Database{
    public function select($query){
        $result = $this->link->query($query) or die($this->link->error.__LINE__);
        if($result->num_rows > 0){
            return $result;
        }
        else {
            return false;
        }
    }
}
$db = new Database();
1
Mahmudul Hasan