我在一个数据库中有 2 个表。
例如:
Table 1 Columns:
id | code | name
Table 2 Columns:
id | code | family | etc.
如何根据重叠代码列查询两个表以检索族列?
这是我目前拥有的:
$query = $this->db
->select('*')
->from('table 1')
->where('code', '123');
$query->get()->result();
上面的查询将检索代码为 123 的行,但我想从表 2 中获取相应的家庭数据。我该怎么做?