我想从 2 个不同的表中选择 id 并使用两个表中都存在的 id。
卖方
id | name | mobile_number | password | is_active
1 | abc | 987654321 | 12345678 | 0
2 | pqr | 989898989 | 12345678 | 1
3 | lmn | 919191991 | 12345678 | 1
其中,0 不活动,1 活动。
油船
id | seller_id | capacity
1 | 1 | 14
2 | 2 | 7
3 | 2 | 3.5
4 | 3 | 3.5
其中,seller_id 是外键。
现在,我想选择所有状态为活动的卖家,即 is_active = 1 且容量 = 3.5
这是我的代码。
$data = $this->db->select('id')
->from('seller')
->where('is_active', 1)
->get()
->result();
return $data;
}```
```public function check_capacity($id,$capacity){
$data=$this->db->select('seller_id',$idd)
->from('tanker')
->where('capacity', $capacity)
->get()
->result();
return $data;
}```
Expected Output :
*Array
(
[0] => stdClass Object
(
[id] => 2
)
[1] => stdClass Object
(
[id] => 3
)
)*