1. Val()函數:
val()函數返回在字符串中找到的數字。在此函數中,它將字符串作為參數,並將返回字符串中的數字。
注意:當第一個非數字字符到來時,此函數將停止讀取。
用法:
Val(string)
示例1:
SELECT Val("234geeksforgeeks12") AS ValNum;
輸出-
ValNum |
---|
234 |
示例-2:
SELECT Val("345") AS ValNum;
輸出-
ValNum |
---|
345 |
2. Sum()函數:
Sum()函數返回一組值的總和。在此函數中,值集作為參數傳遞,它將返回總和。
注意:空值將被該函數忽略。
用法:
Sum(expression)
演示數據庫例如:
表名:學生
學生卡 | 分數 |
---|---|
101 | 89 |
102 | 67 |
103 | 40 |
示例1:
SELECT Sum(marks) AS Total From student;
輸出-
總 |
---|
196 |
示例-2:
SELECT Sum(marks) AS Total From student Where marks>50;
輸出-
總 |
---|
156 |
相關用法
- MS Access Hex()、Oct()用法及代碼示例
- MS Access SLN()、SYD()用法及代碼示例
- MS Access DDB()、FV()用法及代碼示例
- 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 Max()、Min()用法及代碼示例
- MS Access Fix()、Format()用法及代碼示例
- MS Access Second()、Time()用法及代碼示例
- MS Access MonthName()、Now()用法及代碼示例
- MS Access Month()、Minute()用法及代碼示例
- MS Access Day()、Hour()用法及代碼示例
- MS Access Date()、DateAdd()用法及代碼示例
- MS Access Abs()、Avg()用法及代碼示例
- MS Access IsNumeric()、IsNull()用法及代碼示例
注:本文由純淨天空篩選整理自vipinyadav15799大神的英文原創作品 Val() and Sum() Function in MS Access。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。