vote up 0 vote down star

I'm trying to retrieve a count of all unique values in a field.

Example SQL:

SELECT count(distinct accessid) FROM (`accesslog`) WHERE record = '123'

How can I do this kind of query in CodeIgniter?

I know I can use $this->db->query() and write my own SQL, but I have other requirements that I want to use $this->db->where() for, and if I use ->query() I have to write the whole query myself.

flag

80% accept rate

2 Answers

vote up 4 vote down check

$record = '123';

$this->db->distinct();

$this->db->select('accessid');

$this->db->where('record', $record);

$query = $this->db->get('accesslog');

then

$query->num_rows();

should go a long way towards it.

link|flag
vote up 0 vote down

hi, try it out with the following code

function fun1() { $this->db->select('count(DISTINCT(accessid))'); $this->db->from('accesslog'); $this->db->where('record =','123'); $query=$this->db->get(); return $query->num_rows(); }

link|flag

Your Answer

Get an OpenID
or

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