I want concat two fields with comma:
$this->db->select("CONCAT(nev,',',id_tanar)",false)->from("tanar");
And when I use $this->db->get()
and after that $this->db->last_query()
, it shows:
SELECT CONCAT(nev, ', ', id_tanar) FROM (`tanar`)
(check the plus space
character near after comma)
How can I disable this behavior? I don't want extra space...