MS Access Right() 函数
定义和用法
Right() 函数从字符串中提取多个字符(从右开始)。
注释: 另请参见 Left() 函数。
语法
Right(string, number_of_chars)
参数值
参数 | 描述 |
---|---|
string | 必需。 要从中提取的字符串 |
number_of_chars | 必需。要提取的字符数。 如果该参数大于string中的字符数,该函数将返回整个string |
技术细节
适用于: | From Access 2000 |
---|
更多实例
实例
从"CustomerName"中的文本中提取 5 个字符; 列(从右开始):
SELECT Right(CustomerName, 5) AS ExtractString
FROM Customers;
亲自试一试 »