how do we do select table.value as table_value from tablein codeigniter?
The part ASdoes not work, because when I try to access the value, it does not work:
$qry_inp = 'select table.value as table_value from table '
$query = $this->db->query($qry_inp);
echo $query->row('table_value ');
doesn't matter if its in AR or a simple query
source
share