MySQL and PHP

5.35.5 TableUpdate::orderby

Copyright 1997-2021 the PHP Documentation Group.

Description

public mysql_xdevapi\TableUpdate mysql_xdevapi\TableUpdate::orderby(mixed orderby_expr,
                                                                    mixed orderby_exprs);

Sets the sorting criteria.

Parameters

orderby_expr

The expressions that define the order by criteria. Can be an array with one or more expressions, or a string.

orderby_exprs

Additional sort_expr parameters.

Return Values

TableUpdate object.

Examples

Example 5.187 mysql_xdevapi\TableUpdate::orderby example

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

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

$res = $table->update()
  ->set('level', 3)
  ->where('age > 15 and age < 22')
  ->limit(4)
  ->orderby(['age asc','name desc'])
  ->execute();
?>