0

結合されたテーブルを使用した検索機能があります。

私はテーブル工場を持っています。このテーブルでは、工場を検索します。私はタグと呼ばれるテーブルもあります。このテーブルには、特定の工場のタグがあります。工場ID付き。

しかし、工場を検索すると、その工場が何度も表示されます。タグを削除すると、複数回表示されなくなります。

同じ工場の 1 つだけを表示するように強制/制限するにはどうすればよいですか?

http://kees.een-site-bouwen.nl/home/searchで検索をクリックするだけで、私の意味がわかります。

私の検索方法/モデル:

function get_search($match)
{
    $this->db->like('Bedrijfsnaam', $match);
    $this->db->or_like('Postcode', $match);
    $this->db->or_like('Plaats', $match);
    $this->db->or_like('Telefoonnummer', $match);
    $this->db->or_like('Email', $match);
    $this->db->or_like('Website', $match);
    $this->db->or_like('Profiel', $match);
    $this->db->or_like('Adres', $match);
    $this->db->or_like('tags.Tag', $match);
    $this->db->join('tags', 'bedrijven.idbedrijven = tags.idbedrijven');
    $query = $this->db->get('bedrijven');

    return $query->result();
}

私の検索方法/コントローラー:

    function searchresults()
    {
        $match = $this->input->post('search');
        $data['query'] = $this->bedrijven_model->get_search($match);
        $this->load->view('views/header');
        $this->load->view('views/searchresults', $data);
        $this->load->view('views/footer');
        $data['query'] = $this->bedrijven_model->bedrijven_tags();
    }
4

1 に答える 1

0

いいねでグループ化してみる

$this->db->join('tags', 'bedrijven.idbedrijven = tags.idbedrijven');
$this->db->group_by('bedrijven.idbedrijven');
$query = $this->db->get('bedrijven');

次に、一意の値を取得できます

于 2013-04-02T12:45:39.833 に答える