gpt4 book ai didi

php - Laravel Eloquent 连接三表

转载 作者:行者123 更新时间:2023-12-02 20:35:52 26 4
gpt4 key购买 nike

我是 Laravel 的新手。现在我需要一些关于连接表 Eloquent 帮助。

这是我的表结构,

产品表

product_id    product_code    product_name
1 1434 ABC

产品历史表

history_id    product_id    cost    invoice_number
1 1 100 ABC-01

产品参观表

tour_id       product_id    provider_name
1 1 TEST

现在我加入这 3 个表,

$product =  product::join('product_history as ph', 'product.product_id', '=', 'ph.product_id', 'inner')
->join('product_tour as pt', 'product.product_id', '=', 'pt.product_id', 'inner')
->where('product.product_id', '1')
->get()
->toArray();

工作正常。但我认为 Laravel 还提供了 Eloquent 关系。例如,hasOnehasManybelongsTobelongsToMany 等...

Any idea which method is use for my structure ?

提前致谢。

最佳答案

像这样更改您的查询:

$product =  product::Select("*")
//->with('product_history','product_tour')
//Use this with() for condition.
->with([
'ProductHistory' => function ($query){
$query->select('*');
},
'ProductTour' => function ($query) use ($ProviderName) {
$query->select('*')->where("provider_name", "=", $ProviderName);
},
])
->where('product.product_id', '1')
->get()
->toArray();

这是模型文件的代码:

namespace App;
use DB;
use Illuminate\Database\Eloquent\Model;

class Product extends Model
{
public function producthistory()
{
return $this->hasMany('App\ProductHistory', 'product_id','history_id');
}
public function producttour()
{
return $this->hasMany('App\ProductTour', 'product_id','tour_id');
}

}

以及名为 Product_historyproduct_tour 的其他表的模型文件

namespace App;

use Illuminate\Database\Eloquent\Model;

class ProductHistory extends Model
{

public function products()
{
return $this->belongsTo('App\Product', 'history_id','product_id');
}

}

namespace App;

use Illuminate\Database\Eloquent\Model;

class ProductTour extends Model
{

public function products()
{
return $this->belongsTo('App\Product', 'tour_id','product_id');
}

}

关于php - Laravel Eloquent 连接三表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47194487/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com