MS Access 中的 Left() 和 Right()函数
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 |
---|
GEEKSFORGE& |
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 |