我想从program_vss为空且值为2的表course中检索行数据。
return $this->db->get_where('course', array('is_top_course' => 1, 'status' => 'active', 'program_vss'=> null , ));
关于如何使用两个条件检索数据的任何建议
xoefb8l81#
可以使用数组并传递该数组:-
关联数组方法:-
$array = array('name' => $name, 'title' => $title, 'status' => $status); $this->db->where($array); // Produces: WHERE name = 'Joe' AND title = 'boss' AND status = 'active'
1条答案
按热度按时间xoefb8l81#
可以使用数组并传递该数组:-
关联数组方法:-