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.