I have a database that I want to pull only certain rows that have dates in specified ranges. I\'m not sure how to do this properly in active record. Right now it looks like
`$where = array( "order_datetime <" => "2012-10-03", "order_datetime >" => "2012-10-01" ); $this->db->select("*")->get_where("topics_list" , $where)`