如何在cakephp中显示数据库中的最大和最小数字

how to display max and min number from database in cakephp

如何在 cakephp 控制器部分显示最大和最小数字。

$rs = $this->Item->find('all' , array ('fields' => array('Max(Item.no) as no')));

我想要最大数量的项目 table .

我需要添加一些随机数并将其保存在新行中。

使用下面的查询

$rs = $this->Item->find('all' , array ('fields' => array('Max(Item.no) as no')));

此查询将return以下格式的最大数量

Array
(
    [0] => Array
        (
            [no] => 27
        )

)

$max = $rs[0]['no'];