PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.3Mb
HTML Download (TGZ)
- 242.9Kb
HTML Download (Zip)
- 250.5Kb
Copyright 1997-2021 the PHP Documentation Group.
TableUpdate::orderby
Set sorting criteria
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();
?>