I am working with CodeIgniter and want to return some values using a distinct query, I am not able to change the collation in the database itself, and can not do so in the config either, as I am changing somebody else's code.
Is there a way to collate within a query using Active Record? So far I have tried:
$this->db->select('fieldName COLLATE utf8_bin');
I have also attempted to use $this->db->collator_set_default
to no avail.