我想使用查询构建器在Codigniter中编写此查询:
select * from questions where course_id = 13
此查询有什么问题?
$query2 = $this->db->query('select * from questions where course_id = 13 ', false);
答案 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