I want to select id from 2 different tables and use the id which is present in both the tables.
seller
id | name | mobile_number | password | is_active    
1  | abc  | 987654321     | 12345678 |  0
2  | pqr  | 989898989     | 12345678 |  1
3  | lmn  | 919191991     | 12345678 |  1
where, 0 is not active and 1 is active.
tanker
id | seller_id | capacity    
1  | 1         | 14
2  | 2         | 7
3  | 2         | 3.5
4  | 3         | 3.5
where, seller_id is foreign key.
Now, I want to select all seller whose status is active i.e., is_active = 1 and whose capacity = 3.5
Here is my code.
        $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
)
)*
 
    