यही रास्ता है । लेकिन आपके डेटाबेस में मौजूद DATE के प्रारूप के अनुसार आपको 2012-10-01
. को बदलना होगा और 2012-10-03
$this->db->select('*');
$this->db->from('topics_list');
$this->db->where('order_datetime <','2012-10-03');
$this->db->where('order_datetime >','2012-10-01');
$result = $this->db->get();