Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
SELECT COUNT( * ) AS  numrows 
FROM (
books
)
WHERE (
id_status =1
OR id_status =2
)
AND  company =2

how to convert to CI Active Record?

share|improve this question

1 Answer

up vote 1 down vote accepted
$this->db->select('count(*) as numrows')->from('books ')->where("(id_status='1' OR id_status='2') and company ='2'")
share|improve this answer
If the result is enough can use count_all_results instead of select and can split where into two parts. – uzsolt Oct 5 '11 at 10:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.