php8.5
Home/ Manual/ mysql_xdevapi / tabledelete/ TableDelete::orderby

TableDelete::orderby

PHP function Edit on GitHub ✎

Set delete sort criteria

Description

mysql_xdevapi\TableDelete::orderby(string $orderby_expr): mysql_xdevapi\TableDelete

Set the order options for a result set.

Parameters

orderby_expr

The sort definition.

Return Values

A TableDelete object.

Examples

mysql_xdevapi\TableDelete::orderBy() example

php
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$schema = $session->getSchema("addressbook");
$table  = $schema->getTable("names");

$table->delete()
  ->where("age = :age")
  ->bind(['age' => 42])
  ->orderby("name DESC")
  ->limit(1)
  ->execute();

?>

Source: reference/mysql_xdevapi/mysql_xdevapi/tabledelete/orderby.xml · from the official PHP manual (php/doc-en)