我有这个查询:
SELECT hapnin
FROM test.user_favourites, test.happenings t
WHERE user_id = $id
AND t.id = happening_id
我想用codeiniger模型重写它。请如果有人可以帮助我解决这个问题。
我有这个查询:
SELECT hapnin
FROM test.user_favourites, test.happenings t
WHERE user_id = $id
AND t.id = happening_id
我想用codeiniger模型重写它。请如果有人可以帮助我解决这个问题。
你确定你的查询没问题?试试这个希望它有效。
$this->db->select('hapnin')->from('user_favourites, happenings t')->where("user_id = $id AND t.id = happening_id", false)->get();
试试这个
$this->db->select('hapnin')
->from('user_favourites, happenings t')
->where("user_id = $id")
->where("t.id = happening_id")
->get()
->result();