codeigniter主动记录建议

时间:2012-05-24 20:38:56

标签: mysql codeigniter

在mysql中我可以查询如下:

select studentname,'student' as profession from students

它返回类似:

studentname | profession  
------------+-----------
name1       | student  
name2       | student  
...

但是我如何使用活动记录在codeigniter中这样做?我是CI的新手,所以感谢你的帮助。

注意:要清除我的问题,学生表中没有名为studentprofession的列。 student是我希望在结果集中使用的固定文本。

如果我查询类似的内容:

$this->db->select("studentname, student as profession")->from('students')

然后它会在尝试查找学生列时给出错误,而它只是一个静态值。

1 个答案:

答案 0 :(得分:1)

选择有第二个选项。将其设置为false并尝试 -

$this->db->select('studentname, "student" as profession', false)->from('students')