如何使用union在两个表中搜索?

时间:2015-11-19 08:20:03

标签: php mysql pdo

我正在尝试使用这样的联合查询在两个表中搜索:

public function searchInAll($keyword) {
    $sql = "(SELECT * FROM user_information 
             WHERE title LIKE ? OR name LIKE ? OR surname LIKE ?)
            UNION
            (SELECT * FROM groups WHERE name LIKE ?)";
    $query = $this->db->prepare($sql);
    $result = $query->execute(array("%$keyword%", "%$keyword%", "%$keyword%", "%$keyword%"));
    if($query->rowCount()) {
        $results = $query->fetchAll();
        return $results;
    }
    return false;
}

它总是返回false。我试过一张桌子,例如

SELECT * FROM groups WHERE name LIKE ?

SELECT * FROM user_information WHERE title LIKE ? OR name LIKE ? OR surname LIKE ?

这些工作,但对于两个表,它不起作用。

为什么它会返回false?

user_information: user information table

基团: groups table

注意: 他们之间没有联系。它们是不同的表格。

1 个答案:

答案 0 :(得分:3)

如果2个表的列数不同,则无法使用SELECT *UNION

你应该这样做:

(
    SELECT id, name, 'user' AS type 
    FROM user_information 
    WHERE title LIKE ? OR name LIKE ? OR surname LIKE ?
) 
UNION 
(
    SELECT id, name, 'group' AS type
    FROM groups 
    WHERE name LIKE ?
)