SQL Server SUBSTRING() 函数
定义和用法
SUBSTRING() 函数从字符串中提取一些字符。
语法
SUBSTRING(string, start, length)
参数值
参数 | 描述 |
---|---|
string | 必需。要从中提取的字符串 |
start | 必需。起始位置。string 中的第一个位置是 1 |
length | 必需。要提取的字符数。必须是正数 |
技术细节
适用于 | SQL Server(从 2008 开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库 |
---|
更多示例
示例
从 "CustomerName" 列中提取 5 个字符,从位置 1 开始
SELECT SUBSTRING(CustomerName, 1, 5) AS ExtractString
FROM Customers;
自己试试 »