TableSelect::orderby

(No version information available, might only be in Git)

TableSelect::orderbyselect 文のソート条件を設定する

説明

public mysql_xdevapi\TableSelect::orderby(mixed $sort_expr, mixed ...$sort_exprs): mysql_xdevapi\TableSelect

ソート順の条件を設定します。

パラメータ

sort_expr

ソート順の条件を定義した式。 単一の文字列化、ひとつ以上の式を持つ配列。

sort_exprs

追加の sort_expr パラメータ

戻り値

TableSelect オブジェクトを返します。

例1 mysql_xdevapi\TableSelect::orderBy() の例

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

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

$result = $table->select('name', 'age')
->
orderBy('name desc')
->
execute();

$row = $result->fetchAll();
print_r($row);
?>

上の例の出力は、 たとえば以下のようになります。

Array
(
    [0] => Array
        (
            [name] => Sam
            [age] => 42
        )
    [1] => Array
        (
            [name] => John
            [age] => 42
        )
)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top