我在CodeIgniter框架中运行此查询。代码
$this->db->select('*');
$this->db->from('tbl_exam_marks');
$this->db->where('examid','9');
$query=$this->db->get();
$s4 = $query->row();
此生产者创建这样的查询
SELECT * FROM tbl_exam_marks
WHERE examid
=' 9'
但没有行从此返回。 当我在MySQL表上运行查询时,它返回一行
答案 0 :(得分:0)
使用get_where
尝试此代码,希望它能为您提供帮助
$data = $this->db->get_where('tbl_exam_marks', array('examid' => 9))->row_array();