在mysql中,我可以如下查询:
select studentname,'student' as profession from students
它返回如下内容:
studentname | profession
------------+-----------
name1 | student
name2 | student
...
但是我怎么能在使用活动记录的codeigniter中这样做呢?我是CI的新手,谢谢你的帮助。
注意:为了澄清我的问题,students表中没有名为
student
或profession
的列。student
是我希望在结果集中包含的固定文本。如果我询问如下内容:
$this->db->select("studentname, student as profession")->from('students')
然后当它只是一个静态值时,当它试图查找student列时,它会给出错误。
最佳答案
选择有第二个选项。设置为false并尝试-
$this->db->select('studentname, "student" as profession', false)->from('students')
关于mysql - 代码点火器事件记录建议,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10744945/