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