开发者

mysql to codeigniter active record help

开发者 https://www.devze.com 2023-02-05 01:18 出处:网络
Active record is a neet concept but sometimes I find it difficult to get more complicated queries to work.I find this is at least one place the CI docs are lacking.

Active record is a neet concept but sometimes I find it difficult to get more complicated queries to work. I find this is at least one place the CI docs are lacking.

Anyway, This is the sql I wrote. It returns the expected results of quests not yet completed by the user that are unlocked and within the users level requirements:

SELECT writing_quests . * 
FROM  `writing_quests` 
LEFT OUTER JOIN members_quests_completed ON members_quests_completed.quest_id = writing_quests.id
LEFT OUTER JOIN members ON members.id = $user_id
WHERE writing_quests.unlocked =1
AND writing_quests.level_required <= $userlevel
AND members_quests_completed.user_id IS NULL 

This is the codeigniter active record query, it returns all quests that are unlocked and within the users level requirement:

$this->db->select('writing_quests.*');
$this->db->from('writing_quests');
$this->db->join('members_quests_completed', 'members_quests_completed.quest_id = writing_quests.id', 'left outer');
$this->db->join('members', "members.id = $user_id", 'left outer');
$this->db->where('writing_quests.unlock', 1);
$this->db->where('writing_quests.level_required <=', $userlevel);   
$this->db->where('members_quests_completed.user_id is null', null, true);

I'm guessing there is something wrong with the way 开发者_如何学GoI am asking for Nulls. To be thorough, I figured I'd include everything.


I agree that sometimes CI active record can overcomplicate things. Try this for your IS NULL where clause:

$this->db->where('members_quests_completed.user_id IS ','NULL',false);

Try also to enable the profiler or echo the generated query with:

echo $this->db->last_query();

That might shed some light on what the issue is.


Sometimes CI makes it a bit complicated... you can always use $this->db->query("your very long query") to simplify a bit (if I recall correctly strings are still escaped - not sure). It's a personal opinion.


$this->db->where('column IS NOT NULL')

in your case

$this->db->where('members_quests_completed.user_id is not null');
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号