Codeigniter中的查询构建器出错。如何仅获取course_id = 13的记录

时间:2017-08-11 09:42:57

标签: php codeigniter

我想使用查询构建器在Codigniter中编写此查询:

select * from questions where course_id = 13 

此查询有什么问题?

$query2 = $this->db->query('select * from questions where course_id = 13 ', false);

1 个答案:

答案 0 :(得分:0)

您可以尝试使用以下代码吗?

$this->db->where('course_id', 13);
$query = $this->db->get('questions');

这对你有用吗?

来源:https://www.codeigniter.com/userguide3/database/query_builder.html#looking-for-specific-data