获得数据表中,值最大的
表名.
查询的字段列.
WHERE 条件.
多表查询.
字段名.
条件.
$max = $database->max("account", "age", [ "gender" => "female"]);echo "The age of oldest female user is " . $max;