很复杂的MYSQL加入

时间:2013-03-21 21:32:37

标签: mysql join

我正在尝试为此函数添加类别参数:

    public function get_prog_channel($chaine_id = NULL, $nb = NULL, $debut = NULL) {
    $q = $this->db->select('*');
    $q->from($this->table_prog);
    if($nb !==NULL || $debut !== NULL){
    $q->LIMIT($nb, $debut);}

    if ($chaine_id !== NULL) {
        $q->where('channel_id', $chaine_id);
         $q->join($this->table_emission, 'programs.id=emissions.id');

                  return $q ->get()
                            ->result();
    } else {
        return $q->get()
                  ->result();

    }


}

这是我的表格:

  • 程序(ID,标题,emission_id ...)
  • 发射(id,....,channel_id)类别(id,...)
  • rel_emission_categories(CATEGORY_ID,emission_id)
我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您没有指定,但看起来像使用CodeIgniter Framework的PHP。如果是这样,请修改以下内容以满足您的需求。

$query="SELECT *
FROM table1 INNER JOIN table2 on table1.col=table2.col
WHERE table1.whatever=? AND table1.hello=?
LIMIT 1";
$params=array();
$params[]='whatever';
$params[]='world';


$result=$this->db->query($query,$params);
$result=$result->result_array();
print_r($result);