我想将消息发送给代理商,了解他的客户拥有的总属性,为此我要加入3个表。
我在代理人表中有代理人ID,在activity_search_log
中有总属性。
所以我完成了如下的模型
我在模型中的代码是:
public function agentsjoin(){
$this->db->select('*');
$this->db->from('agents ');
$this->db->sum('prop_nums')
$this->db->limit (100);
$query=$this->db->get();
$list=$query->result();
return $list;
}
在控制器中,我想要的设计代码无法写入:
foreach(agent)
if(properties > 0)
send message;
else
no props exist to send message;