如何在模型codeigniter中编写这个sql查询?

时间:2017-06-16 05:14:36

标签: mysql codeigniter codeigniter-3

请检查下面描述的代码。我想在CI模型中使用此查询。如何在模型中的CI查询构建器中使用此查询。

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
   if (alertView.tag == 101)
    {
       MyMatchesVC *myMatchesVC = [[MyMatchesVC alloc] initWithNibName:@"MyMatchesVC" bundle:nil];
       myMatchesVC.strType = pushType;
       [self.navController pushViewController:myMatchesVC animated:YES];
    }
}

3 个答案:

答案 0 :(得分:0)

您可以在模型中使用下面提到的代码。

public function getNewsData(){
    $this->db->select('news.title,dep_table.dep_img, dep_table.dep_name,news.description,news.image,news.created_at as created_at');
    $this->db->from('news');
    $this->db->join('dep_table', 'news.dep_id = dep_table.dep_id');
    $query = $this->db->get();
    return $query->result();
}

如果不起作用,请告诉我。

答案 1 :(得分:0)

symfit

答案 2 :(得分:0)

$this->db->select('news.title,news.description,news.image,dep_table.dep_img,dep_table.dep_name,news.created_at as created_at,news.dep_id,dep_table.dep_id');
$this->db->from('news');
$this->db->join('dep_table','dep_table.dep_id = news.dep_id');
$data = $this->db->get()->result();
return $data;

//试试这个