Mysql
 sql >> Database >  >> RDS >> Mysql

Come eseguire query su sql con record attivo per date tra orari specificati

questo è il modo . ma in base al formato DATA che hai nel database devi cambiare 2012-10-01 e 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();