### max
獲得數據表中,值最大的
max($table, $column, $where)
* ##### table [string]
表名.
* ##### column [string]
查詢的字段列.
* ##### where (optional) [array]
WHERE 條件.
max($table, $join, $column, $where)
* ##### table [string]
表名.
* ##### join [array]
多表查詢.
* ##### column [string]
字段名.
* ##### where (optional) [array]
條件.
Return: [number] 返回最大的值.
>這個返回數值類型.
~~~
$max = $database->max("account", "age", [
"gender" => "female"
]);
echo "The age of oldest female user is " . $max;
~~~