WHERE user_id=$id AND sender_id=$send_id OR user_id=$send_id AND sender_id=$id
所以我在CodeIgniter中尝试使用Active Record,如下所示:
$this->db->where('user_id ',$id);
$this->db->or_where('user_id ',$send_id);
$this->db->where('sender_id ',$send_id);
$this->db->or_where('sender_id ',$id);
但它给了我错误的结果.我究竟做错了什么?
最佳答案
$this->db->where(array('user_id' => $id,'sender_id' => $send_id));
$this->db->or_where(array('user_id' => $send_id,'sender_id' => $id));
您希望将关联数组传递给每个关联数组,它将在查询中的数组中的每个元素之间使用AND,并且使用 – > or_where()将在查询中使用OR.有关详细信息,请参见documentation.