SUBSTRING() 函数从字符串中提取一些字符。
SUBSTRING(
string,
start,
length)
Parameter | Description |
---|---|
string | Required. The string to extract from |
start | Required. The start position. The first position in string is 1 |
length | Required. The number of characters to extract. Must be a positive number |
工作于: | SQL Server(从 2008 年开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库 |
---|
从 "CustomerName" 列中提取 5 个字符,从位置 1 开始:
SELECT SUBSTRING(CustomerName, 1, 5) AS ExtractString
FROM Customers;
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!