samiharju

Results 1 issues of samiharju

Is there a possibility to create queries with the UNION or UNION ALL operator? Something like this would be useful: ``` $h->table('students') ->select('column_name') ->union() ->table('teachers') ->select('column_name') ->get(); ``` Resulting in:...