Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel query builder - re-use query with amended where statement

My application dynamically builds and runs complex queries to generate reports. In some instances I need to get multiple, somewhat arbitrary date ranges, with all other parameters the same.

So my code builds the query with a bunch of joins, wheres, sorts, limits etc and then runs the query. What I then want to do is jump into the Builder object and change the where clauses which define the date range to be queried.

So far, I have made it so that the date range is setup before any other wheres and then tried to manually change the value in the relevant attribute of the wheres array. Like this;

$this->data_qry->wheres[0]['value'] = $new_from_date; $this->data_qry->wheres[1]['value'] = $new_to_date; 

Then I do (having already done it once already)

$this->data_qry->get(); 

Doesn't work though. The query just runs with the original date range. Even if my way worked, I still wouldn't like it though as it seems to be shot through with a precarious dependence (some sort of coupling?). Ie; if the date wheres aren't set up first then it all falls apart.

I could set the whole query up again from scratch, just with a different date range, but that seems ott as everything else in the query needs to be the same as the previous time it was used.

Any ideas for how to achieve this in the correct / neatest way are very welcome.

Thanks,

Geoff

like image 851
Geoff Clayton Avatar asked May 14 '15 10:05

Geoff Clayton


1 Answers

You can use clone to duplicate the query and then run it with different where statements. First, build the query without the from-to constraints, then do something like this:

$query1 = $this->data_qry; $query2 = clone $query1;  $result1 = $query1->where('from', $from1)->where('to', $to1)->get(); $result2 = $query2->where('from', $from2)->where('to', $to2)->get(); 
like image 100
lukasgeiter Avatar answered Sep 20 '22 07:09

lukasgeiter