function SelectInterface::range
Same name in other branches
- 9 core/lib/Drupal/Core/Database/Query/SelectInterface.php \Drupal\Core\Database\Query\SelectInterface::range()
- 10 core/lib/Drupal/Core/Database/Query/SelectInterface.php \Drupal\Core\Database\Query\SelectInterface::range()
- 11.x core/lib/Drupal/Core/Database/Query/SelectInterface.php \Drupal\Core\Database\Query\SelectInterface::range()
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
$this The called object.
2 methods override SelectInterface::range()
- Select::range in core/
lib/ Drupal/ Core/ Database/ Query/ Select.php - Restricts a query to a given range in the result set.
- SelectExtender::range in core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php - Restricts a query to a given range in the result set.
File
-
core/
lib/ Drupal/ Core/ Database/ Query/ SelectInterface.php, line 466
Class
- SelectInterface
- Interface definition for a Select Query object.
Namespace
Drupal\Core\Database\QueryCode
public function range($start = NULL, $length = NULL);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.