CodeIgniter 2.x中的Join语句错误

时间:2016-07-29 11:44:32

标签: php mysql codeigniter

我正在尝试在数据库中加入2个表,但我发现了一个类似

的错误
  

解析错误:语法错误,意外' ='在   C:\ xampp \ htdocs \ Hostel \ application \ models \ studentaccounts.php在线   37

我的型号代码如下

$query=$this->db->select('*')
        ->from('student')   
        ->join('securitybill','securitybill.student_id'='student.student_id','inner')
                 ->get();   
        return $query->result();

我查看了文档,它说明了类似的代码,但我仍然面临着这个问题......你能告诉我代码的问题是什么吗?

0 个答案:

没有答案