PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.4Mb
HTML Download (TGZ)
- 251.5Kb
HTML Download (Zip)
- 258.9Kb
Copyright 1997-2021 the PHP Documentation Group.
TableSelect::limit
Limit selected rows
Description
public mysql_xdevapi\TableSelect mysql_xdevapi\TableSelect::limit(int rows);
Sets the maximum number of records or documents to return.
Parameters
-
rows
The maximum number of records or documents.
Return Values
A TableSelect object.
Examples
Example 5.177 mysql_xdevapi\TableSelect::limit
example
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
$result = $table->select('name', 'age')
->limit(1)
->execute();
$row = $result->fetchAll();
print_r($row);
?>
The above example will output something similar to:
Array ( [0] => Array ( [name] => John [age] => 42 ) )