public function SelectQueryInterface::range
7.x select.inc | public SelectQueryInterface::range($start = NULL, $length = NULL) |
Restricts a query to a given range in the result set.
If this method is called with no parameters, will remove any range directives that have been set.
Parameters
$start: The first record from the result set to return. If NULL, removes any range directives that are set.
$length: The number of records to return from the result set.
Return value
SelectQueryInterface The called object.
2 methods override SelectQueryInterface::range()
- SelectQuery::range in drupal-7.x/
includes/ database/ select.inc - Restricts a query to a given range in the result set.
- SelectQueryExtender::range in drupal-7.x/
includes/ database/ select.inc - Restricts a query to a given range in the result set.
File
- drupal-7.x/
includes/ database/ select.inc, line 422
Class
- SelectQueryInterface
- Interface definition for a Select Query object.
Code
public function range($start = NULL, $length = NULL);