-3

我有这个查询:

SELECT hapnin 
FROM test.user_favourites, test.happenings t 
WHERE user_id = $id 
AND  t.id = happening_id 

我想用codeiniger模型重写它。请如果有人可以帮助我解决这个问题。

4

2 回答 2

0

你确定你的查询没问题?试试这个希望它有效。

$this->db->select('hapnin')->from('user_favourites, happenings t')->where("user_id = $id AND t.id = happening_id", false)->get();
于 2013-09-13T10:08:08.813 回答
0

试试这个

$this->db->select('hapnin')
         ->from('user_favourites, happenings t')
         ->where("user_id = $id")
         ->where("t.id = happening_id")
         ->get()
         ->result();  
于 2013-09-13T12:17:02.293 回答