I have this query :
$this->dbSQLServer->select("nom, '' AS prenom")
->from("users");
return $this->dbSQLServer->get()->result_array();
But instead of returning me ''
for the prenom
, I end up with ' '
.
Any ideas where the problem might come from?