web-dev-qa-db-ja.com

Laravel Eloquentを使用してサブクエリを作成する方法は?

次のEloquentクエリがあります(これは、wheresとorWheresで構成されるクエリの簡易バージョンです。したがって、これを回避するための明らかな迂回方法です-理論が重要です):

$start_date = //some date;

$prices = BenchmarkPrice::select('price_date', 'price')
->orderBy('price_date', 'ASC')
->where('ticker', $this->ticker)
->where(function($q) use ($start_date) {

    // some wheres...

    $q->orWhere(function($q2) use ($start_date){
        $dateToCompare = BenchmarkPrice::select(DB::raw('min(price_date) as min_date'))
        ->where('price_date', '>=', $start_date)
        ->where('ticker', $this->ticker)
        ->pluck('min_date');

        $q2->where('price_date', $dateToCompare);
    });
})
->get();

ご覧のとおり、pluckstart_date以降に発生する最も早い日付です。これにより、この日付を取得するために個別のクエリが実行され、メインクエリのパラメータとして使用されます。クエリを一緒に埋め込んでサブクエリを形成する方法がありますか?

編集:

@Jarekの答えによると、これは私のクエリです:

$prices = BenchmarkPrice::select('price_date', 'price')
->orderBy('price_date', 'ASC')
->where('ticker', $this->ticker)
->where(function($q) use ($start_date, $end_date, $last_day) {
    if ($start_date) $q->where('price_date' ,'>=', $start_date);
    if ($end_date) $q->where('price_date' ,'<=', $end_date);
    if ($last_day) $q->where('price_date', DB::raw('LAST_DAY(price_date)'));

    if ($start_date) $q->orWhere('price_date', '=', function($d) use ($start_date) {

        // Get the earliest date on of after the start date
        $d->selectRaw('min(price_date)')
        ->where('price_date', '>=', $start_date)
        ->where('ticker', $this->ticker);                
    });
    if ($end_date) $q->orWhere('price_date', '=', function($d) use ($end_date) {

        // Get the latest date on or before the end date
        $d->selectRaw('max(price_date)')
        ->where('price_date', '<=', $end_date)
        ->where('ticker', $this->ticker);
    });
});
$this->prices = $prices->remember($_ENV['LONG_CACHE_TIME'])->get();

orWhereブロックにより、クエリ内のすべてのパラメーターが突然引用符で囲まれなくなります。例えば。 WHEREprice_date>= 2009-09-07orWheresを削除すると、クエリは正常に機能します。どうしてこれなの?

16
harryg

これは、次のサブクエリを実行する方法です。

$q->where('price_date', function($q) use ($start_date)
{
   $q->from('benchmarks_table_name')
    ->selectRaw('min(price_date)')
    ->where('price_date', '>=', $start_date)
    ->where('ticker', $this->ticker);
});

残念ながらorWhereには明示的に提供された$operator、それ以外の場合はエラーが発生しますので、あなたの場合:

$q->orWhere('price_date', '=', function($q) use ($start_date)
{
   $q->from('benchmarks_table_name')
    ->selectRaw('min(price_date)')
    ->where('price_date', '>=', $start_date)
    ->where('ticker', $this->ticker);
});

編集:実際にはクロージャーでfromを指定する必要があります。そうしないと、正しいクエリを作成できません。

24
Jarek Tkaczyk