contar número de filas - Codeigniter
AUTOR PREGUNTA #1
-
3 personas más tuvieron esta duda Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
$this->db->select('field1, ... ,fieldn, count(1) as number_elements_of_row'); $this->db->group_by(array('field_group_1', ... ,'field_group_n')); $result = $this->db->get('mytable');