Postgres::browseQueryCount PHP Метод

browseQueryCount() публичный Метод

Finds the number of rows that would be returned by a query.
public browseQueryCount ( $query, $count ) : -1
$query The SQL query
$count The count query
Результат -1 count of rows
    function browseQueryCount($query, $count)
    {
        return $this->selectField($count, 'total');
    }
Postgres