Como criar uma subconsulta usando o Laravel Eloquent?
Eu tenho a seguinte consulta eloquente (esta é uma versão simplificada de uma consulta que consiste em maiswhere
areiaorWhere
s, portanto, a maneira indireta aparente de fazer isso - a teoria é o que importa):
$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();
Como você pode ver eupluck
a primeira data que ocorrer no ou após o meustart_date
. Isso resulta em uma consulta separada sendo executada para obter essa data, que é usada como parâmetro na consulta principal. Existe uma maneira eloquente de incorporar as consultas para formar uma subconsulta e, portanto, apenas 1 chamada de banco de dados em vez de 2?
Editar:
De acordo com a resposta de @ Jarek, esta é minha consulta:
$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();
oorWhere
blocos estão fazendo com que todos os parâmetros na consulta subitamente se tornem sem aspas. Por exemplo.WHERE
data_ preço>= 2009-09-07
. Quando eu removo oorWheres
a consulta funciona bem. Por que é isso?