php8.5
Home/ Manual/ mysql_xdevapi / collectionremove/ CollectionRemove::sort

CollectionRemove::sort

PHP function Edit on GitHub ✎

Set the sorting criteria

Description

mysql_xdevapi\CollectionRemove::sort(string $sort_expr): mysql_xdevapi\CollectionRemove

Sort the result set by the field selected in the sort_expr argument. The allowed orders are ASC (Ascending) or DESC (Descending). This operation is equivalent to the 'ORDER BY' SQL operation and it follows the same set of rules.

Func

Parameters

sort_expr

One or more sorting expressions can be provided. The evaluation is from left to right, and each expression is separated by a comma.

Return Values

A CollectionRemove object that can be used to execute the command, or to add additional operations.

Examples

mysql_xdevapi\CollectionRemove::sort() example

php
<?php

$res = $coll->remove('true')->sort('age desc')->limit(2)->execute();

?>

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