使用 codeigniter 的活动记录模式进行 UNION 查询

2021-11-20 00:00:00 sql union mysql codeigniter activerecord

如何使用 PHP CodeIgniter 框架的活动记录查询格式进行 UNION 查询?

How to do UNION query with PHP CodeIgniter framework's active record query format?

推荐答案

CodeIgniter 的 ActiveRecord 不支持 UNION,因此您只需编写查询并使用 ActiveRecord 的查询方法即可.

CodeIgniter's ActiveRecord doesn't support UNION, so you would just write your query and use the ActiveRecord's query method.

$this->db->query('SELECT column_name(s) FROM table_name1 UNION SELECT column_name(s) FROM table_name2');

相关文章