Somehow its a little difficult to create such a request for me: Give me all the navigation entries where linkname is not null
$query = $this->db->get_where('navigation',array('linkname'!==NULL));
Giving me errors
Unknown column "0" in the "where" section
SELECT linkname , idnavigation FROM ( navigation ) WHERE 0 = 1
Any clues with this?
source share