Showing posts with label Row count. Show all posts
Showing posts with label Row count. Show all posts

Thursday, December 26, 2013

Get rows count in Drupal 7

<?php

$query = db_select('table1')->fields('users')->execute();
$count = $query->rowCount();

?>