我们可以在sql中实现这一点。
$this->db->select('mytype as type');

{select 'mytype' as type from mytype}
如何在codeigniter中实现这一目标? 我试过了
{$this->db->select('mytype as type');}
答案 0 :(得分:0)
试试这个。
$this->db->select('"mytype" as type', FALSE);
OR
$this->db->select('mytype as type', FALSE);