codeigniter 如何检索在一列上具有空值和一个特定值的行数据

qyswt5oh  于 2022-12-25  发布在  其他
关注(0)|答案(1)|浏览(76)

我想从program_vss为空且值为2的表course中检索行数据。

return $this->db->get_where('course', array('is_top_course' => 1, 'status' => 'active', 'program_vss'=> null ,  ));

关于如何使用两个条件检索数据的任何建议

xoefb8l8

xoefb8l81#

可以使用数组并传递该数组:-

关联数组方法:-

$array = array('name' => $name, 'title' => $title, 'status' => $status);

$this->db->where($array); 

// Produces: WHERE name = 'Joe' AND title = 'boss' AND status = 'active'

相关问题