我有这个问题:
SELECT hapnin
FROM test.user_favourites, test.happenings t
WHERE user_id = $id
AND t.id = happening_id
我想在codeiniger模型中重写它。如果有人可以帮我这个。
答案 0 :(得分:0)
你确定你的查询是好的吗?试试这个希望吧。
$this->db->select('hapnin')->from('user_favourites, happenings t')->where("user_id = $id AND t.id = happening_id", false)->get();
答案 1 :(得分:0)
试试这个
$this->db->select('hapnin')
->from('user_favourites, happenings t')
->where("user_id = $id")
->where("t.id = happening_id")
->get()
->result();