目录

MS Access Right() 函数

示例

从字符串中提取 4 个字符(从右开始):

SELECT Right("SQL Tutorial is cool", 4) AS ExtractString;
亲自试一试 »

定义和用法

Right() 函数从字符串中提取多个字符(从右开始)。

笔记:另请参阅左边()功能。

语法

Right( string, number_of_chars)

参数值

Parameter Description
string Required. The string to extract from
number_of_chars Required. The number of characters to extract. If this parameter is higher than the number of characters in string, this function will return the entire string

技术细节

工作于: 从 Access 2000

更多示例

示例

从 "CustomerName" 列中的文本中提取 5 个字符(从右开始):

SELECT Right(CustomerName, 5) AS ExtractString
FROM Customers;
亲自试一试 »