Codeigniter Active record: greater than statement

后端 未结 4 1340
灰色年华
灰色年华 2021-01-07 23:25

I\'m trying to convert a \"greater than\" where statement to CI\'s Active Record syntax. When I use this snippet

    $this->db->join(\'product_stocks\'         


        
4条回答
  •  抹茶落季
    2021-01-08 00:00

    I think this should do the trick:

    $this->db->where('product_stocks.stock_level >', '1');  //moved the >
    

提交回复
热议问题