MySQL and PHP

5.34.6 TableSelect::limit

Copyright 1997-2021 the PHP Documentation Group.

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
        )
)