用于简单查询的Codeigniter活动记录

时间:2016-10-15 06:47:33

标签: php mysql codeigniter

请参阅以下查询。

我想将其转换为codeIgniter活动记录。

SQL QUERY:

db->query()

如何在不使用$ this-> db-> query()?

的情况下进行转换

使用CodeIgniter查询的ActiveRecord样式转义参数,但db->query()A = [i for i in A if i not in B] 默认情况下不受SQL注入保护。

这就是我想使用codeigniter活动记录转换它的原因。

提前致谢。

1 个答案:

答案 0 :(得分:0)

找到有关我的问题的解决方案

使用 ACTIVE RECORD

查询
$this->db->select("SUM(A.votes) as reputation");
$this->db->from("(
SELECT reply.votes FROM reply where reply.user_id = $user_id

UNION ALL

SELECT thread.votes FROM thread where thread.user_id = $user_id) AS A");
$query = $this->db->get();