简体   繁体   English

Laravel 查询生成器 - 连接三个表(A 一对多 B,B 一对多 C)

[英]Laravel Query Builder - Join three tables (A one to many B, B one to many C)

I have three tables.我有三张桌子。

Country: id, country_name国家:id,country_name
State: id, country_id, state_name State:id,country_id,state_name
City: id, state_id, city_name城市:id、state_id、city_name

I want to get a specific country ($id = 1) with all the cities in every state.我想获得一个特定国家($id = 1),其中包含每个 state 中的所有城市。
I try this code.我试试这段代码。

DB::table('country as a')
   ->join('state as b', 'b.country_id', '=', 'a.id')
   ->join('city as c', 'c.state_id', '=', 'b.id')
   ->select('a.*', 'b.*', 'c.*') 
   ->where('a.id', '=', $id)
   ->get();

And get results like this.并得到这样的结果。

result: [
  {id: 1, country_id: 1, country_name: ABC, state_name: aaa, state_id: 0, city_name: city a1},
  {id: 2, country_id: 1, country_name: ABC, state_name: aaa, state_id: 0, city_name: city a2},
  {id: 3, country_id: 1, country_name: ABC, state_name: aaa, state_id: 0, city_name: city a3},
  {id: 4, country_id: 1, country_name: ABC, state_name: aaa, state_id: 0, city_name: city a4},
  {id: 5, country_id: 1, country_name: ABC, state_name: bbb, state_id: 1, city_name: city b1},
  {id: 6, country_id: 1, country_name: ABC, state_name: bbb, state_id: 1, city_name: city b2},
  {id: 7, country_id: 1, country_name: ABC, state_name: bbb, state_id: 1, city_name: city b3},
  {id: 8, country_id: 1, country_name: ABC, state_name: bbb, state_id: 1, city_name: city b4},
  .....
]

I hope can get results like this.我希望能得到这样的结果。

result: [
  {
    id: 1, 
    country_id: 1,
    country_name: ABC, 
    state_name: aaa, 
    state_id: 0, 
    city: [
      {city_name: city a1},
      {city_name: city a2},
      {city_name: city a3},
      {city_name: city a4}
    ]
  },
  {
    id: 2, 
    country_id: 1,
    country_name: ABC, 
    state_name: bbb, 
    state_id: 1, 
    city: [
      {city_name: city b1},
      {city_name: city b2},
      {city_name: city b3},
      {city_name: city b4}
    ]
  },
  .....
  and like that for other states.
]

Maybe someone can help me to give a new insight.也许有人可以帮助我提供新的见解。
Thank you very much.非常感谢。

Leveraging Eloquent Relationships利用 Eloquent 关系

Models & Relationships模型与关系

class Country extends Model
{
    public function states()
    {
        return $this->hasMany(State::class);
    }
}

class State extends Model
{
    public function country()
    {
        return $this->belongsTo(Country::class);
    }

    public function cities()
    {
        return $this->hasMany(City::class);
    }
}

class City extends Model
{
    public function state()
    {
        return $this->belongTo(State::class);
    }
}

Query询问

$countries = Country::query()
    ->with('states.cities')
    ->get();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM