MS Access Right() 函数
实例
从字符串中提取 4 个字符(从右开始):
SELECT Right("SQL Tutorial is cool", 4) AS ExtractString;
定义与用法
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;