我有一个带有AND条件的左连接查询:
SELECT a.s_id AS sid,a.s_prog_id AS progid,a.s_acssn_id AS ssnid,a.s_name AS sname,a.s_admission_no AS sadmsnno,a.s_photo_name AS sphotonm,
b.sa_atten_code AS acode
FROM student_mst a
LEFT JOIN stu_attendance b
ON a.s_id = b.sa_s_id AND b.sa_atten_dt = ?
在Codeigniter中,我试图实现上述查询,如:-
$this->db->select($this->select_column);
$this->db->from('student_mst a');
$this->db->join('stu_attendance b', 'a.s_id = b.sa_stu_id', 'left');
现在,我应该为带参数的AND条件写什么?如何在Codeigniter中实现AND条件?请帮助。
在上面的查询中,b.sa_atten_dt = ?假定从post变量接收一个类似'2021-08-21'的日期。
你可以写" "标准中的条件"on";声明。
$this->db->join('stu_attendance b', 'a.s_id = b.sa_stu_id AND b.sa_atten_dt = ?', 'left');