MySQL and PHP

5.32.5 TableDelete::orderby

Copyright 1997-2021 the PHP Documentation Group.

Description

public mysql_xdevapi\TableDelete mysql_xdevapi\TableDelete::orderby(string orderby_expr);

Set the order options for a result set.

Parameters

orderby_expr

The sort definition.

Return Values

A TableDelete object.

Examples

Example 5.167 mysql_xdevapi\TableDelete::orderBy example

<?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();

?>