I have the following which works fine as a standard MySQL query:
SELECT 'page' AS result_type,...
However, I need to create this query using active record in the codeigniter framework.
I tried this:
$this->db->select('\'page\' AS result_type');
But that returns an error saying Unknown column ''page'' in 'field list'
I've tried various other similar approaches but they all fail.
Is this even possible in Active record and if so, can you please point me in the right direction??