SQL Server RIGHT() 函数
定义和用法
RIGHT() 函数从字符串中提取一定数量的字符(从右边开始)。
语法
RIGHT(string, number_of_chars)
参数值
参数 | 描述 |
---|---|
string | 必需。要从中提取的字符串 |
number_of_chars | 必需。要提取的字符数。如果 number_of_chars > string,则返回 string |
技术细节
工作于 | SQL Server(从 2008 开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库 |
---|
更多示例
示例
从 "CustomerName" 列中的文本中提取 5 个字符(从右边开始)
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;
自己试试 »