How to do UNION query with codeigniter framework's active record query format?
feedback
|
|
CodeIgniter's ActiveRecord doesn't support UNION, so you would just write your query and use the ActiveRecord's query method.
| |||||||||||||
feedback
|
|
You may use the following method to get the SQL statement in the model:
This way the SQL statement will be in the $subquery variable, without actually executing it. You have asked this question a long time ago, so maybe you have already got the answer. if not, this process may do the trick. | |||
|
feedback
|
|
By doing union using last_query(), it may hamper performance of application. Because for single union it would require to execute 3 queries. i.e for "n" union "n+1" queries. It won't much affect for 1-2 query union. But it will give problem if union of many queries or tables having large data. This link will help you a lot: active record subqueries We can combine active record with manual queries. Example:
| ||||
|
feedback
|
|
Here's a solution I created:
| |||||||
feedback
|