1. Left()函数:
在MS Access中,Left()函数从字符串的左侧提取字符串。在Left()函数中将传递字符串和字符串号。它将从字符串的左侧返回大小为pass number的字符串。
用法:
Left(string, number_of_chars)
示例1:
SELECT Left("GEEKSFORGEEKS", 3) AS ExtractString;
输出-
ExtractString |
---|
GEE |
示例-2:
SELECT Left("GEEKSFORGEEKS", 10) AS ExtractString;
输出-
ExtractString |
---|
奇福 |
2. Right()函数:
Right()函数的工作方式类似于Left()函数,但它从字符串的右端提取字符串。这样,字符串和将要提取的字符串的大小将作为参数传递。
用法:
Right(string, number_of_chars)
示例1:
SELECT Right("GEEKSFORGEEKS", 4) AS ExtractString;
输出-
ExtractString |
---|
EEKS |
示例-2:
SELECT Right("GEEKSFORGEEKS", 8) AS ExtractString;
输出-
ExtractString |
---|
FORGEEKS |
相关用法
- 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 Max()、Min()用法及代码示例
- MS Access Fix()、Format()用法及代码示例
- MS Access Second()、Time()用法及代码示例
- MS Access MonthName()、Now()用法及代码示例
- MS Access Month()、Minute()用法及代码示例
注:本文由纯净天空筛选整理自cse1604310056大神的英文原创作品 Left() and Right() Function in MS Access。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。