在mysql中我可以查询如下:
select studentname,'student' as profession from students
它返回如下内容:
studentname | profession
------------+-----------
name1 | student
name2 | student
...
但是如何在使用活动记录的 codeigniter 中做到这一点?我是 CI 的新手,非常感谢您的帮助。
注意:为了澄清我的问题,学生表中没有名为student
or的列。是我希望与我的结果集一起使用的固定文本。profession
student
如果我查询类似:
$this->db->select("studentname, student as profession")->from('students')
然后它在尝试查找学生列时给出错误,而它只是一个静态值。