1. Mid()函数:
在MS Access中,mid()函数将从给定位置提取字符串。在此函数中,将传递3个参数,第一个是字符串,第二个是起始位置,最后一个是字符串的长度。
用法:
Mid(string, start, length)
示例1:
SELECT Mid("GEEKSFORGEEKS", 3, 3) AS ExtractString;
输出-
ExtractString |
EKS |
示例-2:
SELECT Mid("GEEKSFORGEEKS", 6, 14) AS ExtractString;
输出-
ExtractString |
FORGEEKS |
2. Len()函数:
在MS Access中,Len()函数将返回字符串的长度。它将字符串作为参数,并将返回字符串的长度。
用法:
Len(string/varname)
示例1:
SELECT Len("GEEKSFORGEEKS") AS LengthOfString;
输出-
LengthOfString |
13 |
示例-2:
SELECT Len("GFG") AS LengthOfString;
输出-
LengthOfString |
3 |
相关用法
- SQL Server LEN()用法及代码示例
- MySQL MID()用法及代码示例
- 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 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()用法及代码示例
注:本文由纯净天空筛选整理自cse1604310056大神的英文原创作品 Mid() and Len() Function in MS Access。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。