在mysql中我可以查询如下:
select studentname,'student' as profession from students
它返回类似:
studentname | profession
------------+-----------
name1 | student
name2 | student
...
但是我如何使用活动记录在codeigniter中这样做?我是CI的新手,所以感谢你的帮助。
注意:要清除我的问题,学生表中没有名为student
或profession
的列。 student
是我希望在结果集中使用的固定文本。
如果我查询类似的内容:
$this->db->select("studentname, student as profession")->from('students')
然后它会在尝试查找学生列时给出错误,而它只是一个静态值。
答案 0 :(得分:1)
选择有第二个选项。将其设置为false并尝试 -
$this->db->select('studentname, "student" as profession', false)->from('students')