如何预示另一个表中不存在的数据CodeIgniter

时间:2019-04-18 00:41:29

标签: php mysql codeigniter

我想使用CI中的foreach方法从与另一张表相关的表列中获取数据,所以在 left 上是 crew 表格,右侧上的表格是 contrib 表格(用'/'分隔):

+====+======+===+====+=========+
| id | name | / | id | crew_id |
+====+======+===+====+=========+
|  1 | John | / |  1 |       1 |
+----+------+---+----+---------+
|  2 | Jane | / |  2 |       1 |
+----+------+---+----+---------+
|  3 | Jody | / |  3 |       2 |
+----+------+---+----+---------+

在模型任务模型上,我尝试过:

public function list_contrib(){
    $this->db->select('contrib.*, crew.name');
    $this->db->from('contrib');
    $this->db->join('crew', 'contrib.crew_id = crew.id' 'inner);
    $query = $this->db->get();
    return $query->result();
}

public function crew_list(){
    $this->db->select('*');
    $this->db->from('crew');
    $query = $this->db->get();
    return $query->result();
}

在控制器上:

 public function add_task(){

    $this->load->model('taskmodel');

    $data['crews']   = $this->taskmodel->crew_list();
    $data['contrib'] = $this->taskmodel->list_contrib();

    $this->load->view('add_task', $data);
}

在视图上:

<?php foreach($contrib as $cont): ?>
    <select>
    <?php foreach($crews as $crew):
          if($crew->id != $cont->crew_id ) { ?>
      <option value="<?php $crew->id ?>"><?php echo $crew->name ?></option>
    <?php } endforeach; ?>
    </select>             
<?php endforeach; ?>

它在我的选择选项中包括 Jane 。我希望选择选项中只显示 Jody ,因为 John Jane 的ID存在于contrib表中。对不起,英语不好。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

因为您使用内部联接。 尝试使用左右联接

public function list_contrib(){
    $this->db->select('contrib.*, crew.name');
    $this->db->from('contrib');
    $this->db->join('crew', 'contrib.crew_id = crew.id', 'left');
    $query = $this->db->get();
    return $query->result();
}