在这:
$this->db->select('count(o.id)');
$this->db->from('orders o');
$this->db->join('order_status_history', 'o.id = order_status_history.order_id');
$this->db->where("(order_status_history.in_dts)::date ='" .$reportDay. "'");
$this->db->where('order_status_history.new_status ' , 6);
我想要选择计数(id),其中 order_status_history.new_status 是一个间隔,例如(2<=order_status_history.new_status<=6),没有一个整数。如何在这个sql中做到这一点?