我已经在这个 CodeIgniter Query 上工作了几个小时,但我无法找出问题所在。这是 SQL 表,其中包含数据和每个字段的名称。表名是 bodystyle。
制作 | 型号 | 身材
福特 | F-150 猛禽 4X4 乘员驾驶室 | 前驾驶室
宝马 | |
宝马 | | 35i |
宝马 | X5 | 35i
宝马 | X5 | 45i
宝马 | X5 | 35i
这是我使用 CodeIgniter 运行的查询
$make =$this->input->post('make');
$model =$this->input->post('model');
$this->db->select('bodystyle');
$this->db->from('bodystyle');
$this->db->where('make', $make);
$this->db->where('model', $model);
$records = $this->db->get('');
$output = null;
foreach ($records->result() as $row){
$output .= $row->bodystyle . ', ';
}
echo $output;
$make = Ford
$model = Raptor 4X4 Crew Cab
我得到的输出是FRONT CAB, ,35i, 45i, 35i
你能看出它拉动所有体型的任何原因吗?
我希望它只是根据品牌和型号来拉它