統計方法:Count API-Medoo使用指南

上一篇《Has方法:Has API-Medoo使用指南》中介紹瞭如何使用Medoo的Has方法判斷數據庫中的目標數據是否存在,本篇將教你使用Count方法來統計記錄的行數。php


統計方法:Count APIhtml

統計數據庫中記錄的行數。數據庫

count($table, $where)
//table [string]: 表名
//where (可選)[array]:WHERE子句篩選記錄


返回值: [number]:受到影響的行數。post

 提示:返回值的數據類型是數字。
spa

$database = new medoo("my_database");
 
$count = $database->count("account", [
"gender" => "female"
]);
 
echo "We have " . $count . " female users.";


Medoo版本: 0.9.1.1 .net

原文標題: 統計方法:Count API-Medoo使用指南 code

原文連接: http://loiy.net/post/605.htmlhtm

相關文章
相關標籤/搜索