1. Max()函數:
max()函數返回給定集合的最大值。在該函數中,將傳遞一個查詢,並在符合條件的記錄中,該記錄的最大值將作為結果返回。表達式將作為參數傳遞,並將返回表達式中的最大值。
用法:
Max (expression)
演示數據庫例如:
表名:學生
學生卡 | 分數 |
---|---|
121 | 56 |
122 | 45 |
123 | 89 |
124 | 50 |
示例1:
SELECT Max(Marks) AS marks FROM student;
輸出-
分數 |
---|
89 |
示例-2:
SELECT Max(Marks) AS marks FROM student where Marks<80;
輸出-
分數 |
---|
56 |
2. Min()函數:
min()函數的工作方式類似於max()函數,但是它將返回表達式的最小值。在此函數中,查詢將作為參數傳遞,並將返回最小記錄。
用法:
Min(expression)
示例1:
SELECT Min(Marks) AS marks FROM student;
輸出-
分數 |
---|
45 |
示例-2:
SELECT Min(Marks) AS marks FROM student where Marks>50;
輸出-
分數 |
---|
56 |
相關用法
- MS Access Hex()、Oct()用法及代碼示例
- MS Access SLN()、SYD()用法及代碼示例
- MS Access DDB()、FV()用法及代碼示例
- MS Access Val()、Sum()用法及代碼示例
- MS Access Sgn()、Sqr()用法及代碼示例
- MS Access StrConv()、StrReverse()用法及代碼示例
- MS Access Chr()、Asc()用法及代碼示例
- MS Access InStr()、InstrRev()用法及代碼示例
- MS Access LCase()、UCase()用法及代碼示例
- MS Access Str()、StrComp()用法及代碼示例
- MS Access Replace()、Space()用法及代碼示例
- MS Access Exp()、Count()用法及代碼示例
- MS Access Mid()、Len()用法及代碼示例
- MS Access LTrim()、RTrim()用法及代碼示例
- MS Access Left()、Right()用法及代碼示例
- MS Access Fix()、Format()用法及代碼示例
- MS Access Second()、Time()用法及代碼示例
- MS Access MonthName()、Now()用法及代碼示例
- MS Access Month()、Minute()用法及代碼示例
- MS Access Day()、Hour()用法及代碼示例
- MS Access Date()、DateAdd()用法及代碼示例
注:本文由純淨天空篩選整理自vipinyadav15799大神的英文原創作品 Max() and Min() function in MS Access。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。