Welcome Guest, Not a member yet? Register   Sign In
Adding where clause to count_all
#1

[eluser]Wonder Woman[/eluser]
Hi,

I basically just want to add a where clause to my count all request - is there anyway I can add this on to what I have?

I currently have:
Code:
$this->db->count_all('comments');

but I would typically like:
Code:
$this->db->count_all('comments')->where('approved', 1);

or something similar.

Any help would be appreciated.

Thanks.
#2

[eluser]toopay[/eluser]
Code:
$this->db->where('foo', 'bar');
$this->db->from('some_table');
echo $this->db->count_all_results();
#3

[eluser]Wondering Coder[/eluser]
toopay, could you help me about my problem in my query too
this is the link: http://ellislab.com/forums/viewthread/194401/




Theme © iAndrew 2016 - Forum software by © MyBB