我想从数据库中获取最小值但不是零列Codeigniter
。
这是我正在使用的当前代码,但它给了我 0,因为列也有 0 值。
$this->db->select_min('saleprice');
$this->db->join('category_products', 'category_products.product_id=products.id', 'right');
$this->db->where('category_products.category_id', $cat_id);
$this->db->where('products.enabled',1);
return $this->db->get('products')->row_array();
请让我知道如何获得最小值但不是 0