sqlserver中substring的用法
时间: 2023-09-23 13:02:32 浏览: 67
northwind.txt
在 SQL Server 中,SUBSTRING 函数用于返回字符串的一部分。其语法如下:
```
SUBSTRING (string, start, length)
```
其中,
- `string`:要提取的字符串。
- `start`:要提取的子字符串的起始位置。位置从 1 开始计数。
- `length`:要提取的子字符串的长度。
例如,要从字符串 `'Hello world'` 中提取 `'world'`,可以使用以下查询:
```
SELECT SUBSTRING('Hello world', 7, 5)
```
查询结果为 `'world'`。
阅读全文