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

MySQL | Codeigniter Active Records sta aggiungendo ulteriori tick indietro alle query

Aggiungi un secondo parametro FALSE nel tuo SELECT()

Allora,

$this->db->select("
                T.id AS TimeSheetID,
                DATE_FORMAT(T.date_created,'%M') AS MonthName", FALSE);

$this->db->select() accetta un secondo parametro opzionale. Se lo imposti su FALSE, CodeIgniter non tenterà di proteggere i nomi dei campi o delle tabelle con i backtick.

Riferimento