doudeng1870 2014-02-01 04:30
浏览 158
已采纳

如何在codeigniter中使用多个where子句?

For my database query I have to use multiple where clause query in Codeigniter PHP. I wrote the code like this:

 $this->db->and_where_in('category_name,publication_status','home_headline_sub',1);

But this query shows database query error in browser. Then I wrote this query:

$this->db->where('category_name,publication_status','home_headline_sub',1);

But it still give error. Can anyone help me to solve this? Thanks in advance.

  • 写回答

3条回答 默认 最新

  • doupin2013 2014-02-01 04:36
    关注

    You can chain database clauses, so you would write it as

    $this->db->where('category_name','case')->where('publication_status','case')->where('home_headline_sub','case');
    

    This would generate a query's WHERE clause as

    // WHERE category_name = 'case' AND publication_status = 'case' AND home_headline_sub = 'case'
    

    Documentation here: http://ellislab.com/codeigniter/user-guide/database/active_record.html#chaining

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?