获取数据表中的行数
表名.
WHERE 条件.
多表查询.
需要统计的字段.
$count = $database->count("account", [ "gender" => "female"]);echo "We have " . $count . " female users.";