上一篇《Max方法:Max API-Medoo使用指南》中介紹瞭如何使用Medoo的Max方法來獲取列的最大值,既然能夠獲取最大值,固然也有獲取最小值的,不難想到最小值的方法就是Min方法。php
Min方法:Min API,獲取列的最小值。html
min($table, $column, $where) //table [string]: 表名 //column [string]: 將要被計算的目標列 //where (可選)[array]:WHERE子句篩選記錄
返回值: [number]:列的最小值。post
提示:返回值的數據類型是數字。
spa
$database = new medoo("my_database"); $min = $database->min("account", "age", [ "gender" => "male" ]); echo "The age of youngest male user is " . $min;
Medoo版本: 0.9.1.1 .net
原文標題: Min方法:Min API-Medoo使用指南 code
原文連接: http://loiy.net/post/613.htmlhtm