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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。