Drupal 7 – Get the number of results in db_select()

We can get the number of returned rows in db_select() by ->rowCount().

// Get the number of nodes created by administrator
$query = db_select('node', 'n');
$result = $query->fields('n', array('nid'))->condition('uid', 1, '=')->execute();
return $result->rowCount();

 

Done =)

Reference: Drupal forum – get count with db_select

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.