I am trying to make a union of a few tables data into one query using. I am using Yii framework (v1.15). I have done it like this and this worked fine:
$command = Yii::app()->db->createCommand();
$command->select('something')->from('somewhere');
$command->union($sql);
This produces something like this:
SELECT SOMETHING FROM SOMEWHERE UNION (SELECT ....)
But union merges duplicate row values. I need to combine all of the data using UNION ALL
, but I can't find anything about how to do it in the
documentation.
Maybe some of you how can I do it using the yii database object? Thank you
In Yii
1.x.x
's query builder,UNION ALL
is not supported. You can change it to:Another way is to override
union()
andbuildQuery()
methods inCDbCommand
command or createunionAll()
method by inheritingCDbCommand
.Another dirty way would be:
Which is equal to:
Then:
Or using regular expression:
Which is equal to:
Then, pass it through
createCommand()
method.